misc/coverity_model.c
author sheepluva
Sun, 04 Sep 2016 21:23:00 +0200
changeset 11844 a784866c91ad
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Lua API: fix incorrect error message. thanks to TheAnachron and rhino for pointing this out

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

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