misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sat, 24 Feb 2018 15:14:30 +0100
changeset 13066 ad75ed9a1e15
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
RC Plane Challenge: Switch to using fake crates only

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

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