summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-02-12 13:52:16 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-02-12 13:54:54 +0000
commitb5c901a73060d0b18746d83fc8977e8bbe7ee784 (patch)
tree432d9140ad33d9ce4cf7274b471602d8b1340e7b /include
parentf5cca127b0ddcfe36b8dc98a5f405979e8afe673 (diff)
glut: Don't try to guess system headers.
Just include them, especially such basic header as stdlib.h
Diffstat (limited to 'include')
-rw-r--r--include/GL/glut.h20
1 files changed, 3 insertions, 17 deletions
diff --git a/include/GL/glut.h b/include/GL/glut.h
index 022378fb9d..c305b9ab99 100644
--- a/include/GL/glut.h
+++ b/include/GL/glut.h
@@ -74,23 +74,9 @@ extern "C" {
# define __cdecl
# define GLUT_DEFINED___CDECL
# endif
-# ifndef _CRTIMP
-# ifdef _NTSDK
- /* Definition compatible with NT SDK */
-# define _CRTIMP
-# else
- /* Current definition */
-# ifdef _DLL
-# define _CRTIMP __declspec(dllimport)
-# else
-# define _CRTIMP
-# endif
-# endif
-# define GLUT_DEFINED__CRTIMP
-# endif
-# ifndef GLUT_BUILDING_LIB
-extern _CRTIMP void __cdecl exit(int);
-# endif
+#if defined(_WIN32) && !defined(GLUT_DISABLE_ATEXIT_HACK)
+#include <stdlib.h>
+#endif
/* GLUT callback calling convention for Win32. */
# define GLUTCALLBACK __cdecl