Added missing includes for standard header files

This commit is contained in:
Jon Smirl 2003-08-23 01:28:59 +00:00
parent 724c2c7f6f
commit 52f246bd23
4 changed files with 8 additions and 3 deletions

View 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>

View File

@ -3,6 +3,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <GL/gl.h>
#if USE_MINIGLX

View 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

View 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>