diff options
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c new file mode 100644 index 0000000..a47adb6 --- /dev/null +++ b/test/test.c @@ -0,0 +1,14 @@ +/* See LICENSE file for copyright and license details. */ + +/* See LICENSE file for copyright and license details. */ + +#include <stdlib.h> +#include <stdio.h> + +void +asserti(int expected, int value) +{ + if (expected != value) { + exit(1); + } +} |