misc/coverity_model.c
author koda
Tue, 02 Jun 2015 17:57:15 +0100
changeset 10974 0f9fc5923be4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix libsdl bundling on OSX when library rather than framework is used

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

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