misc/coverity_model.c
author sheepluva
Tue, 10 Nov 2015 22:37:54 +0100
branchsdl2transition
changeset 11364 b0df3f2fcafc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
use SDL2 to copy to clipboard

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

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