misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Mon, 10 Apr 2017 19:08:00 +0200
changeset 12215 2cbc57db82e1
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix caption not updating if adding caption with same text but different color

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

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