diff options
Diffstat (limited to 'tests/abort.c')
-rw-r--r-- | tests/abort.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/abort.c b/tests/abort.c new file mode 100644 index 0000000..3afda7b --- /dev/null +++ b/tests/abort.c @@ -0,0 +1,7 @@ +#include <stdlib.h> + +int +main(void) +{ + abort(); +} |