aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornegativeExponent2020-08-04 19:49:04 +0800
committernegativeExponent2020-08-04 20:40:58 +0800
commit908e426cc1ef2187357ed8fb59edd99b8a8060c9 (patch)
tree21a394548a7357d12af17014efc0453ad32be23e /include
parent996dfb25c3a7ef8a485c3ce394a532cb0ee2e5c2 (diff)
downloadpcsx_rearmed-908e426cc1ef2187357ed8fb59edd99b8a8060c9.tar.gz
pcsx_rearmed-908e426cc1ef2187357ed8fb59edd99b8a8060c9.tar.bz2
pcsx_rearmed-908e426cc1ef2187357ed8fb59edd99b8a8060c9.zip
Add header guards
Diffstat (limited to 'include')
-rw-r--r--include/config.h5
-rw-r--r--include/pcnt.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index 362e4a4..340cc2f 100644
--- a/include/config.h
+++ b/include/config.h
@@ -1,2 +1,7 @@
+#ifndef __CONFIG_H__
+#define __CONFIG_H__
+
#define MAXPATHLEN 256
#define PCSX_VERSION "1.9"
+
+#endif /* __CONFIG_H__ */
diff --git a/include/pcnt.h b/include/pcnt.h
index 9ddd500..c956b41 100644
--- a/include/pcnt.h
+++ b/include/pcnt.h
@@ -1,3 +1,5 @@
+#ifndef __PCNT_H__
+#define __PCNT_H__
enum pcounters {
PCNT_ALL,
@@ -130,3 +132,5 @@ void pcnt_gte_end(int op);
#define pcnt_print(fps)
#endif
+
+#endif /* __PCNT_H__ */