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/dfsound/spu_c64x.h | |
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/dfsound/spu_c64x.h')
-rw-r--r-- | plugins/dfsound/spu_c64x.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/dfsound/spu_c64x.h b/plugins/dfsound/spu_c64x.h index 7c4d565..56ede38 100644 --- a/plugins/dfsound/spu_c64x.h +++ b/plugins/dfsound/spu_c64x.h @@ -1,3 +1,6 @@ +#ifndef __P_SPU_C64X_H__ +#define __P_SPU_C64X_H__ + #define COMPONENT_NAME "pcsxr_spu" enum { @@ -26,3 +29,5 @@ struct region_mem { }; #define ACTIVE_CNT 3 + +#endif /* __P_SPU_C64X_H__ */ |