misc/coverity_model.c
author sheepluva
Sat, 07 Dec 2019 16:18:20 +0100
branchhedgeroid
changeset 15517 45d6806548e9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
hedgeroid: add debug logging to library loading

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

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