misc/coverity_model.c
author alfadur
Mon, 28 Oct 2019 00:31:41 +0300
changeset 15487 91f0c5ec37b5
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
move change_master into the server

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

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