comparison src/video/aalib/SDL_aavideo.c @ 1320:2a2f31cc4c8b

AAlib driver was using C runtime string functions without including string.h. Fixes Bugzilla #131.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 02 Feb 2006 05:35:42 +0000
parents c9b51268668f
children 3692456e7b0f
comparison
equal deleted inserted replaced
1319:66f6c64c2c69 1320:2a2f31cc4c8b
23 /* AAlib based SDL video driver implementation. 23 /* AAlib based SDL video driver implementation.
24 */ 24 */
25 25
26 #include <stdlib.h> 26 #include <stdlib.h>
27 #include <stdio.h> 27 #include <stdio.h>
28 #include <string.h>
28 #include <unistd.h> 29 #include <unistd.h>
29 #include <sys/stat.h> 30 #include <sys/stat.h>
30 31
31 32
32 #include "SDL.h" 33 #include "SDL.h"