foxygit / doom Log in
commit 4372e7fd057b2050ccf5266185410edf9a7d4422
Author:     Turo Lamminen <turol@iki.fi>
AuthorDate: Tue Nov 1 20:34:40 2022 +0200
Commit:     Turo Lamminen <turol@iki.fi>
CommitDate: Thu Nov 3 10:41:50 2022 +0200

    hexen: Add missing header guards to p_spec.h
---
 src/hexen/p_spec.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/hexen/p_spec.h b/src/hexen/p_spec.h
index 30b65d29..6dd86e5e 100644
--- a/src/hexen/p_spec.h
+++ b/src/hexen/p_spec.h
@@ -15,6 +15,10 @@
 //


+#ifndef P_SPEC_H
+#define P_SPEC_H
+
+
 extern int *TerrainTypes;

 //
@@ -577,3 +581,6 @@ boolean EV_ThingActivate(int tid);
 boolean EV_ThingDeactivate(int tid);
 boolean EV_ThingRemove(int tid);
 boolean EV_ThingDestroy(int tid);
+
+
+#endif // P_SPEC_H