diff options
author | Autechre | 2020-08-04 17:40:56 +0200 |
---|---|---|
committer | GitHub | 2020-08-04 17:40:56 +0200 |
commit | edfb913768c9ebd50a0ba810697e2ab7056bcc3e (patch) | |
tree | 7a12bf7b69f7f47fa3fed0d625530a3250d81be7 /plugins/gpulib | |
parent | 31afa58d0576516307bb1f634bd23595d676f2f3 (diff) | |
parent | 908e426cc1ef2187357ed8fb59edd99b8a8060c9 (diff) | |
download | pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.tar.gz pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.tar.bz2 pcsx_rearmed-edfb913768c9ebd50a0ba810697e2ab7056bcc3e.zip |
Merge pull request #443 from negativeExponent/add-header-guards
Add header guards
Diffstat (limited to 'plugins/gpulib')
-rw-r--r-- | plugins/gpulib/gpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/gpulib/gpu.h b/plugins/gpulib/gpu.h index 7e1d18b..36de7ee 100644 --- a/plugins/gpulib/gpu.h +++ b/plugins/gpulib/gpu.h @@ -8,6 +8,9 @@ * See the COPYING file in the top-level directory. */ +#ifndef __GPULIB_GPU_H__ +#define __GPULIB_GPU_H__ + #include <stdint.h> #ifdef __cplusplus @@ -140,3 +143,5 @@ void GPUrearmedCallbacks(const struct rearmed_cbs *cbs_); #ifdef __cplusplus } #endif + +#endif /* __GPULIB_GPU_H__ */ |