Fixes building problem on all 64 bit arches
[kraptor.git] / test.c
blobfd5473751138d8665616ef8e0e943e433faa2e77
1 /*
2 test.c
3 This is a test program
4 The only purpose of this program is to check if you can compile Allegro programs.
5 By Kronoman - In lovin memory of my father - October 2003
6 */
8 #include <allegro.h>
9 #include <aldumb.h>
11 int main()
13 allegro_init();
15 allegro_message("This is a test program to check if you can compile Allegro programs.\nYou can safely erase this program.\n");
17 return 0;
19 END_OF_MAIN();