misc/coverity_model.c
author sheepluva
Sun, 01 May 2016 14:32:47 +0200
changeset 11785 947e2d53afc1
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
add button to randomize theme only

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

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