misc/coverity_model.c
author Grigory Ustinov <grenka@altlinux.org>
Tue, 27 Nov 2018 20:39:39 +0300
changeset 14327 85cd1aff2f04
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
sed -i -E "s/еж([аиу][^а-я])/ёжик\1/g" *ru* grep -E "еж[аиу][^а-я]" *ru* Comment: [^а-я] includes all spaces and punctuation and also finish of string
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10498
bcd1d7ad2f3e Model file for coverity checks
unc0rr
parents:
diff changeset
     1
void fpcrtl_halt(int num) {
bcd1d7ad2f3e Model file for coverity checks
unc0rr
parents:
diff changeset
     2
    __coverity_panic__();
bcd1d7ad2f3e Model file for coverity checks
unc0rr
parents:
diff changeset
     3
}
bcd1d7ad2f3e Model file for coverity checks
unc0rr
parents:
diff changeset
     4
bcd1d7ad2f3e Model file for coverity checks
unc0rr
parents:
diff changeset
     5
int fpcrtl_abs(int num) {
bcd1d7ad2f3e Model file for coverity checks
unc0rr
parents:
diff changeset
     6
    return num >= 0 ? num : -num;
bcd1d7ad2f3e Model file for coverity checks
unc0rr
parents:
diff changeset
     7
}