misc/coverity_model.c
author Anton Malmygin <antonc27@mail.ru>
Sun, 14 Feb 2016 21:34:01 +0100
changeset 11548 45982bda46cc
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix for cursor movement problems on touch devices

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

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