misc/coverity_model.c
author unc0rr
Sat, 13 Feb 2016 00:36:38 +0300
changeset 11545 86528b0cd491
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
detectMap() rewrite with more sane approach, also check waypoints placement to avoid cheating

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

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