Inclusion guard fixes.

This commit is contained in:
Camilla Berglund
2013-01-15 01:59:56 +01:00
parent 1856251ffe
commit f8df91d815
4 changed files with 12 additions and 12 deletions

View File

@@ -27,8 +27,8 @@
*
*************************************************************************/
#ifndef __glfw3_h__
#define __glfw3_h__
#ifndef _glfw3_h_
#define _glfw3_h_
#ifdef __cplusplus
extern "C" {
@@ -1815,5 +1815,5 @@ GLFWAPI GLFWglproc glfwGetProcAddress(const char* procname);
}
#endif
#endif /* __glfw3_h__ */
#endif /* _glfw3_h_ */

View File

@@ -27,8 +27,8 @@
*
*************************************************************************/
#ifndef __glfw3_platform_h__
#define __glfw3_platform_h__
#ifndef _glfw3_native_h_
#define _glfw3_native_h_
#ifdef __cplusplus
extern "C" {
@@ -136,5 +136,5 @@ GLFWAPI GLXContext glfwGetGLXContext(GLFWwindow window);
}
#endif
#endif /* __glfw3_platform_h__ */
#endif /* _glfw3_native_h_ */