misc/coverity_model.c
author sheepluva
Sun, 30 Nov 2014 22:48:28 +0100
changeset 10594 7a61f321f399
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
oops, fix logging. had = instead of <> in an error check

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

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