misc/coverity_model.c
author sheepluva
Tue, 15 May 2018 16:55:37 +0200
branchui-scaling
changeset 13385 ec1491bb5acc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
WIP: allow changing chat size Press Ctrl+, Ctrl- and Ctrl0 while in chat

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

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