misc/coverity_model.c
author sheepluva
Sat, 15 Oct 2016 20:11:05 +0200
changeset 11874 045f33b498ea
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix copypastafail (incorrect variable name) and whitespaces

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

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