mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 16:03:34 +01:00
13 lines
151 B
C
13 lines
151 B
C
|
|
void CHECK(bool cond) {
|
|
if (!cond) {
|
|
__coverity_panic__();
|
|
}
|
|
}
|
|
|
|
void CHECK_EQ(int l, int r) {
|
|
if (l != r) {
|
|
__coverity_panic__();
|
|
}
|
|
}
|