summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2007-09-24 10:22:31 -0700
committerEric Anholt <eric@anholt.net>2007-09-24 10:22:31 -0700
commit9bb0d628b8cac9673e6ecc69b090f972f3c4e6e3 (patch)
treebfadae4c3b90fe2dcd7eda65256dd3fb6a9b15cc /progs
parent8cf9085bc7b96819d2bec1e749e15af58eefb2f3 (diff)
Just use stddef.h to get ptrdiff_t instead of obsolete malloc.h.
Diffstat (limited to 'progs')
-rw-r--r--progs/tests/cva.c6
-rw-r--r--progs/tests/dinoshade.c6
-rw-r--r--progs/tests/multipal.c6
3 files changed, 3 insertions, 15 deletions
diff --git a/progs/tests/cva.c b/progs/tests/cva.c
index c7677990bf..ed965e748a 100644
--- a/progs/tests/cva.c
+++ b/progs/tests/cva.c
@@ -11,11 +11,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
-#ifdef __VMS
-# include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
-#else
-# include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
-#endif
+#include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
#ifdef _WIN32
#include <windows.h>
#endif
diff --git a/progs/tests/dinoshade.c b/progs/tests/dinoshade.c
index ed7b879bc7..504b4af526 100644
--- a/progs/tests/dinoshade.c
+++ b/progs/tests/dinoshade.c
@@ -38,11 +38,7 @@
#include <stdlib.h>
#include <string.h>
#include <math.h> /* for cos(), sin(), and sqrt() */
-#ifdef __VMS
-# include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
-#else
-# include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
-#endif
+#include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
#ifdef _WIN32
#include <windows.h>
#endif
diff --git a/progs/tests/multipal.c b/progs/tests/multipal.c
index c824b38703..fac652f4e0 100644
--- a/progs/tests/multipal.c
+++ b/progs/tests/multipal.c
@@ -9,11 +9,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#ifdef __VMS
-# include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
-#else
-# include <malloc.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
-#endif
+#include <stddef.h> /* for ptrdiff_t, referenced by GL.h when GL_GLEXT_LEGACY defined */
#ifdef _WIN32
#include <windows.h>
#endif