misc/coverity_model.c
author sheepluva
Tue, 03 Nov 2015 22:06:16 +0100
branch0.9.22
changeset 11280 9342ce0e926d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
tweak changelog

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

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