misc/coverity_model.c
author unc0rr
Mon, 09 Nov 2015 21:09:51 +0300
changeset 11336 e6e748d021d0
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Fix check which was supposed to prevent sending same record to different checkers - Remove some dead code in Actions.hs

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

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