misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Tue, 03 Oct 2017 02:05:09 +0200
changeset 12638 0ca08b310819
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Relicense my contributions from WTFPL to CC-0 To reduce the total number of different licenses used in HW. Not that it makes any difference …

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

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