misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 16:33:01 +0100
changeset 12044 4524df2f7231
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update changelog for the recent HedgeEditor updates

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

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