misc/coverity_model.c
author alfadur
Sun, 14 Oct 2018 23:09:55 +0300
changeset 13918 f8b5708835de
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
.. or rather move calling conventions to proper position

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

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