misc/coverity_model.c
author KoBeWi <kobewi4e@gmail.com>
Fri, 14 Oct 2016 22:52:04 +0200
changeset 11868 60c8bb8bc1d7
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
rising flakes will no longer fly forever [reviewed, cleaned up and committed by sheepluva]

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

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