misc/coverity_model.c
author unc0rr
Sun, 01 Jan 2017 22:13:35 +0300
changeset 12126 4348997e502b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Refactor code to add more structure to it

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

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