diff options
author | David Robillard <d@drobilla.net> | 2022-04-21 17:33:12 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-04-21 17:33:12 -0400 |
commit | ec7a751fac40d07eba3bac1dc4d1c7f4235adc52 (patch) | |
tree | 14a63bd82322a8300634d541d6ed803621e524c9 /src/stub.h | |
parent | 2a56aca2b1113c4dd565b6138c49ed21da9bcc7c (diff) | |
download | pugl-ec7a751fac40d07eba3bac1dc4d1c7f4235adc52.tar.gz pugl-ec7a751fac40d07eba3bac1dc4d1c7f4235adc52.tar.bz2 pugl-ec7a751fac40d07eba3bac1dc4d1c7f4235adc52.zip |
Fix private include guards
Diffstat (limited to 'src/stub.h')
-rw-r--r-- | src/stub.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ // Copyright 2012-2021 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#ifndef PUGL_DETAIL_STUB_H -#define PUGL_DETAIL_STUB_H +#ifndef PUGL_SRC_STUB_H +#define PUGL_SRC_STUB_H #include "pugl/pugl.h" @@ -56,4 +56,4 @@ puglStubGetContext(PuglView* const view) PUGL_END_DECLS -#endif // PUGL_DETAIL_STUB_H +#endif // PUGL_SRC_STUB_H |