Created
April 5, 2016 15:44
-
-
Save misberner/9393a16d1c67ef5335523ac3ccd3019c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void __VERIFIER_error(int i) { | |
fprintf(stderr, "error_%d\n", i); | |
assert(0); | |
} | |
#define __VERIFIER_error(x) \ | |
do { \ | |
int error_ ## x = 0; \ | |
assert(error_ ## x); \ | |
} while(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment