diff options
author | David Robillard <d@drobilla.net> | 2020-10-21 12:23:24 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-10-21 15:43:29 +0200 |
commit | feb6c4f7952eafbc8c2203ef0c657ea3580ee441 (patch) | |
tree | d67ed34eb9955720fd63b961f9b07ce00f5321a9 /include/pugl/gl.h | |
parent | 063ddc8db2831e1f79d7569c8fc80dd3d54f5cda (diff) | |
download | pugl-feb6c4f7952eafbc8c2203ef0c657ea3580ee441.tar.gz pugl-feb6c4f7952eafbc8c2203ef0c657ea3580ee441.tar.bz2 pugl-feb6c4f7952eafbc8c2203ef0c657ea3580ee441.zip |
Add missing include guards
Diffstat (limited to 'include/pugl/gl.h')
-rw-r--r-- | include/pugl/gl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/pugl/gl.h b/include/pugl/gl.h index 9f7a741..17352e1 100644 --- a/include/pugl/gl.h +++ b/include/pugl/gl.h @@ -22,6 +22,9 @@ pure portable programs. */ +#ifndef PUGL_GL_H +#define PUGL_GL_H + // IWYU pragma: begin_exports #ifdef __APPLE__ @@ -34,3 +37,5 @@ #endif // IWYU pragma: end_exports + +#endif // PUGL_GL_H |