changeset 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 66f6c64c2c69
children e05bc5d315e3
files src/video/aalib/SDL_aavideo.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/video/aalib/SDL_aavideo.c	Wed Feb 01 19:59:02 2006 +0000
+++ b/src/video/aalib/SDL_aavideo.c	Thu Feb 02 05:35:42 2006 +0000
@@ -25,6 +25,7 @@
 
 #include <stdlib.h>
 #include <stdio.h>
+#include <string.h>
 #include <unistd.h>
 #include <sys/stat.h>