misc/coverity_model.c
author sheepluva
Fri, 01 Apr 2016 15:36:19 +0200
changeset 11642 c82a0a886779
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
merging 5 of Wuzzy's 6 patches. review for last patch pending (hwp content changes)

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

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