misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 30 Jul 2018 19:23:28 +0200
changeset 13574 9c83afd65e8c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ASA, final mission: Redraw map and mask to make borders more distingushable Also fix floating green dashes after blowing up things

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

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