misc/coverity_model.c
author nemo
Mon, 30 Jan 2017 11:35:09 -0500
changeset 12128 4027903ff3e7
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
updates to polish translation by alzen, also add two unlocalised string he found in the gui

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

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