comparison TOOLS/bmovl-test.c @ 22739:25586323a128

Include stdlib.h and string.h to fix the following warnings: bmovl-test.c:22: warning: implicit declaration of function `strlen' bmovl-test.c:64: warning: implicit declaration of function `exit' bmovl-test.c:67: warning: implicit declaration of function `atoi' bmovl-test.c:89: warning: implicit declaration of function `malloc' bmovl-test.c:114: warning: implicit declaration of function `free'
author diego
date Tue, 20 Mar 2007 01:11:55 +0000
parents 6ce48e36dc01
children 9128aa26244a
comparison
equal deleted inserted replaced
22738:2852487b2f8d 22739:25586323a128
1 /* Small program to test the features of vf_bmovl */ 1 /* Small program to test the features of vf_bmovl */
2 2
3 #include <unistd.h> 3 #include <unistd.h>
4 #include <fcntl.h> 4 #include <fcntl.h>
5 #include <string.h>
6 #include <stdlib.h>
5 #include <SDL.h> 7 #include <SDL.h>
6 #include <SDL_image.h> 8 #include <SDL_image.h>
7 9
8 #define DEBUG 0 10 #define DEBUG 0
9 11