From 5c240eb9db285ada456dd4465c7e04b34dd3e1f6 Mon Sep 17 00:00:00 2001 From: Nev3r Date: Sun, 21 Apr 2019 18:05:16 +0200 Subject: [PATCH] Add back the `p_slopes.h` header guard Signed-off-by: Nev3r --- src/p_slopes.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/p_slopes.h b/src/p_slopes.h index c5acd4e42..8f9e7d61e 100644 --- a/src/p_slopes.h +++ b/src/p_slopes.h @@ -10,6 +10,9 @@ /// \file p_slopes.c /// \brief ZDoom + Eternity Engine Slopes, ported and enhanced by Kalaron +#ifndef P_SLOPES_H__ +#define P_SLOPES_H__ + #include "m_fixed.h" // Vectors #ifdef ESLOPE @@ -72,3 +75,4 @@ typedef struct void T_DynamicSlopeLine (dynplanethink_t* th); void T_DynamicSlopeVert (dynplanethink_t* th); #endif // #ifdef ESLOPE +#endif // #ifndef P_SLOPES_H__