Copyright clean-up (part 1):
[AROS.git] / test / clib / abort.c
blob4136c5370e9e3fa401dd4d71ea53c64f91299ecb
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdlib.h>
8 #include <aros/debug.h>
10 int main(void)
12 abort();
14 bug("Abort() did not work!\n");
16 return 20;