misc/coverity_model.c
author nemo
Sun, 29 Apr 2018 10:47:02 -0400
changeset 13348 5f6208031658
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Back out 12847:1aba77b2e4ac This both does NOT fix the seed mismatch with shoppa map preview *AND* breaks otherwise identical scripts with different file encodings due to multiple lua calls.

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

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