misc/coverity_model.c
author Marcin Mielniczuk <marmistrz.dev@zoho.eu>
Fri, 06 Jul 2018 16:59:52 +0200
changeset 13450 d3c86ade3d4d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Send the rnd reply to the room only.

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

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