misc/coverity_model.c
author koda
Sun, 20 Mar 2016 00:57:44 -0400
changeset 11614 b77870abb3c4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update osx bundle creation with SDL2 library names

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

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