misc/coverity_model.c
author unc0rr
Fri, 10 Apr 2015 23:58:05 +0300
changeset 10907 9b8e9813c6f8
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Switch to mysql-simple, as hdbc package seems to be abandoned and anyway never satisfied me

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

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