Added missing includes for standard header files
authorJon Smirl <jonsmirl@gmail.com>
Sat, 23 Aug 2003 01:28:59 +0000 (01:28 +0000)
committerJon Smirl <jonsmirl@gmail.com>
Sat, 23 Aug 2003 01:28:59 +0000 (01:28 +0000)
progs/miniglx/manytex.c
progs/miniglx/miniglxsample.c
progs/miniglx/miniglxtest.c
progs/miniglx/sample_server2.c

index 3801963f9dba978561a39081286c829c7827e815..36fa10d222b37da052b9c36055b36c920eba8538 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: manytex.c,v 1.1 2003/08/06 17:47:15 keithw Exp $ */
+/* $Id: manytex.c,v 1.2 2003/08/23 01:28:59 jonsmirl Exp $ */
 
 /*
  * test handling of many texture maps
@@ -12,6 +12,7 @@
 #include <assert.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <math.h>
 #include <GL/glut.h>
 
index bea845c8ff7e92f14fe649fa7afbb50801475c3b..d4d6729f932f291ef69159538801497acf547762 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <unistd.h>
 #include <GL/gl.h>
 
 #if USE_MINIGLX
index 911bf4cb8695c26fd3b26e3be60f61698c1d9f3c..394f3e25384b420c585e7b20b60d245a7a3f1384 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: miniglxtest.c,v 1.1 2003/08/06 17:47:15 keithw Exp $ */
+/* $Id: miniglxtest.c,v 1.2 2003/08/23 01:28:59 jonsmirl Exp $ */
 
 /*
  * Test the mini GLX interface.
@@ -7,6 +7,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <unistd.h>
 #include <GL/gl.h>
 #define USE_MINI_GLX 1
 #if USE_MINI_GLX
index 3508a21950c8785b1b624e5f539d8859db9208ba..58effcf484d494975122514cfac14316fec638cb 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: sample_server2.c,v 1.1 2003/08/06 17:47:15 keithw Exp $ */
+/* $Id: sample_server2.c,v 1.2 2003/08/23 01:28:59 jonsmirl Exp $ */
 
 /*
  * Sample server that just keeps first available window mapped.
@@ -17,6 +17,8 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
 #include <GL/gl.h>
 #include <GL/miniglx.h>
 #include <errno.h>