misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 28 May 2021 15:06:39 +0200
changeset 15788 acf70c44065b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Use the singular 'they' in code comments, where it makes sense

void fpcrtl_halt(int num) {
    __coverity_panic__();
}

int fpcrtl_abs(int num) {
    return num >= 0 ? num : -num;
}