misc/coverity_model.c
author unc0rr
Sun, 20 Nov 2016 15:20:08 +0100
changeset 11979 1d07f4ceb8c6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Prepend "User quit: " to client-side quit messages Tested and commited by sheepluva

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

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