misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Mon, 25 Sep 2017 20:46:26 +0200
changeset 12521 1877ca9e8703
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Remove checkpoints in ASA: Searching in the dust Same rationale as for ASA: Getting to the device

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

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