misc/coverity_model.c
author sheepluva
Tue, 17 May 2016 21:32:10 +0200
changeset 11826 7654e2357934
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
implement ExtraftFileDir and ExtractFileName in uUtils

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

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