summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-20 01:08:58 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-20 01:08:58 +0000
commitc590354060833f615b3b306104c8bd4defca0e3c (patch)
tree1b66ac68b59eca0e0d462950c3201cac539cf8d2 /TOOLS
parentb478785d8960987bd294285fc3d15525f0834d1f (diff)
downloadmpv-c590354060833f615b3b306104c8bd4defca0e3c.tar.bz2
mpv-c590354060833f615b3b306104c8bd4defca0e3c.tar.xz
Add #include <string.h> to fix the following warning:
gltest.c:157: warning: implicit declaration of function `memset' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22756 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/gltest.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/TOOLS/gltest.c b/TOOLS/gltest.c
index e8c6d33146..1bfdce5e67 100644
--- a/TOOLS/gltest.c
+++ b/TOOLS/gltest.c
@@ -5,6 +5,7 @@
#include <stdlib.h>
#include <math.h>
#include <inttypes.h>
+#include <string.h>
// pixel size: 3 or 4
#define BYTES_PP 3