summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-04 18:30:30 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-04 18:30:30 +0000
commit59295d1b3d5ba2b76e214b5dd102cb0805bae834 (patch)
tree5c56b6de44cfe8edab34136116888f38e956726b /Gui
parentef67ce917c9f7519cfbb600b73b66c7de963fbcf (diff)
downloadmpv-59295d1b3d5ba2b76e214b5dd102cb0805bae834.tar.bz2
mpv-59295d1b3d5ba2b76e214b5dd102cb0805bae834.tar.xz
gcc3 warning fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2081 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/bitmap.c3
-rw-r--r--Gui/bitmap/bitmap.c3
-rw-r--r--Gui/bitmap/bmp/bmp.c3
-rw-r--r--Gui/timer.h2
4 files changed, 7 insertions, 4 deletions
diff --git a/Gui/bitmap.c b/Gui/bitmap.c
index 8343058ce2..f47858095b 100644
--- a/Gui/bitmap.c
+++ b/Gui/bitmap.c
@@ -1,6 +1,7 @@
-#include <stdlib.h>
#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include "bitmap.h"
#include "../error.h"
diff --git a/Gui/bitmap/bitmap.c b/Gui/bitmap/bitmap.c
index 8343058ce2..f47858095b 100644
--- a/Gui/bitmap/bitmap.c
+++ b/Gui/bitmap/bitmap.c
@@ -1,6 +1,7 @@
-#include <stdlib.h>
#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include "bitmap.h"
#include "../error.h"
diff --git a/Gui/bitmap/bmp/bmp.c b/Gui/bitmap/bmp/bmp.c
index f4a80308bf..cd57da789a 100644
--- a/Gui/bitmap/bmp/bmp.c
+++ b/Gui/bitmap/bmp/bmp.c
@@ -21,8 +21,9 @@
50.53 : Res
*/
-#include <stdlib.h>
#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include "bmp.h"
#include "../bitmap.h"
diff --git a/Gui/timer.h b/Gui/timer.h
index 800c0dcac1..fbd3b95d06 100644
--- a/Gui/timer.h
+++ b/Gui/timer.h
@@ -9,4 +9,4 @@ extern void timerSetHandler( timerTSigHandler handler );
extern void timerInit( void );
extern void timerDone( void );
-#endif; \ No newline at end of file
+#endif