misc/coverity_model.c
author alfadur
Sun, 14 Oct 2018 22:55:07 +0300 (2018-10-14)
changeset 13912 d178a834f1f4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
set proper sdl calling convention for vcpkg builds
void fpcrtl_halt(int num) {
    __coverity_panic__();
}

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