Add default pointer prefs
[AROS.git] / test / traptest.c
blobfae091ea20335493e32ae8c0344a36b63177af54
1 #include <stdio.h>
3 int main()
5 int a, b, c;
7 a = 3;
8 b = 0;
9 printf("Attempting to divide by zero...\n");
10 c = a/b;
11 printf("Done, result is: %d!\n", c);
12 return 0;