misc/coverity_model.c
author sheepluva
Sun, 01 May 2016 15:58:19 +0200
branchqmlfrontend
changeset 11786 0aa4b3d02cba
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3

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

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