misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 24 Jul 2018 15:44:25 +0200
changeset 13544 eaa92a59ff62
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Update and change license information of Droplet sounds, now it's CC BY 3.0 Was previously labelled under license CC Sampling+ 1.0, which is considered non-free by FSF, OSI and DFSG.

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

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