misc/coverity_model.c
author alfadur
Sat, 26 Oct 2019 02:36:08 +0300
changeset 15487 4cc9ec732392
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
refactor some of the room handler

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

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