misc/coverity_model.c
author sheepluva
Sun, 01 Mar 2015 21:06:27 +0100
changeset 10846 c76fd416eff6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction

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

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