misc/coverity_model.c
author unC0Rr
Tue, 15 Nov 2022 14:27:22 +0100
changeset 15893 5b3beb90e1a6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Implement generation of c header from rust interface, adapt qmlfrontend

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

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