misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Sat, 23 Sep 2017 19:49:41 +0200
changeset 12508 7442bb330d38
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
More random names: angel, morbid, pokemon-like, viking, darth vader, stormtrooper, war-themed

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

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