misc/coverity_model.c
author sheepluva
Sat, 26 Jun 2021 00:13:28 +0200
changeset 15831 c3971b38bbfa
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
hedgewars-engine (rust)/preview: recognise feature_size cmd and do something with it

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

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