misc/coverity_model.c
author sheepluva
Sun, 15 May 2016 13:18:34 +0200
changeset 11826 d8844d4c67de
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
always include uUtils _after_ SysUtils

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

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