misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 24 Apr 2018 20:30:15 +0200
changeset 13343 93325e13d329
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Change KeyBindToName to shortstring Key names do not and should not be longer than 255 characters. ;-)

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

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