misc/coverity_model.c
author sheepluva
Sat, 01 Oct 2016 22:35:14 +0200
changeset 11856 dea8411974f9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
adding some frontend stuff to changelog

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

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