misc/coverity_model.c
author sheepluva
Sun, 14 May 2017 14:56:08 +0200
changeset 12413 8aff87f8cd06
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Added tag 0.9.23-alpha for changeset 8cc070640fd1

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

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