1#ifndef GL_WRAP_H
2#define GL_WRAP_H
3
4#ifdef __APPLE__
5#  include <OpenGL/gl.h>
6#  include <OpenGL/glu.h>
7#else
8#  include <GL/gl.h>
9#  include <GL/glu.h>
10#endif
11
12#ifndef GLAPIENTRY
13#define GLAPIENTRY
14#endif
15
16#endif /* ! GL_WRAP_H */
17