shithub: choc

Download patch

ref: 4372e7fd057b2050ccf5266185410edf9a7d4422
parent: f2c227a84cd476ab29bd2372aab6793f7b8b8fa7
author: Turo Lamminen <turol@iki.fi>
date: Tue Nov 1 16:34:40 EDT 2022

hexen: Add missing header guards to p_spec.h

--- 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_ThingDeactivate(int tid);
 boolean EV_ThingRemove(int tid);
 boolean EV_ThingDestroy(int tid);
+
+
+#endif // P_SPEC_H