misc/coverity_model.c
author sheepluva
Sun, 02 Oct 2016 01:17:33 +0200
changeset 11859 dea589cb6b6e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
reflect dataenc->sandi change in travis file

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

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