misc/coverity_model.c
author alfadur
Sun, 14 Oct 2018 23:25:20 +0300
changeset 13914 ef50e4f59b8f
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
remove old sdl headers and libs in support of recent deletionism spirit

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

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