misc/coverity_model.c
author sheepluva
Sun, 08 Dec 2019 00:07:24 +0100
branchhedgeroid
changeset 15519 f90255a3454c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
hedgeroid: adjust module names (SDL_* -> SDL2_*)

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

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