misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 26 Apr 2017 18:38:21 +0200
changeset 12344 ae699a0b054b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
HedgeEditor: Disable waypoint export because output scripts break when waypoints have been added

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

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