resolver API change
[oweals/gnunet.git] / src / monkey / bug_assertion_failure.c
1 #include <stdio.h>
2 #include <assert.h>
3
4 void assertionFailure()
5 {
6         int x = 5;
7         printf("Assertion Failure Now!\n");
8         assert(x < 4);
9 }
10
11 int main(int argc, char *argv[])
12 {
13         assertionFailure();
14         return 0;
15 }