[MPlayer-cvslog] r22757 - trunk/TOOLS/bmovl-test.c
diego
subversion at mplayerhq.hu
Tue Mar 20 02:11:55 CET 2007
Author: diego
Date: Tue Mar 20 02:11:55 2007
New Revision: 22757
Modified:
trunk/TOOLS/bmovl-test.c
Log:
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'
Modified: trunk/TOOLS/bmovl-test.c
==============================================================================
--- trunk/TOOLS/bmovl-test.c (original)
+++ trunk/TOOLS/bmovl-test.c Tue Mar 20 02:11:55 2007
@@ -2,6 +2,8 @@
#include <unistd.h>
#include <fcntl.h>
+#include <string.h>
+#include <stdlib.h>
#include <SDL.h>
#include <SDL_image.h>
More information about the MPlayer-cvslog
mailing list