From b7495ef5bd04a446268f93458c856c9f5ab54ffd Mon Sep 17 00:00:00 2001 From: helixhorned Date: Mon, 26 Mar 2012 22:04:59 +0000 Subject: [PATCH] Guard scriptfile.h with an #ifndef sentinel. git-svn-id: https://svn.eduke32.com/eduke32@2548 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/include/scriptfile.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/polymer/eduke32/build/include/scriptfile.h b/polymer/eduke32/build/include/scriptfile.h index c20266412..05042630a 100644 --- a/polymer/eduke32/build/include/scriptfile.h +++ b/polymer/eduke32/build/include/scriptfile.h @@ -1,3 +1,7 @@ + +#ifndef BUILD_SCRIPTFILE_H_ +#define BUILD_SCRIPTFILE_H_ + typedef struct { char *textbuf; uint32_t textlength; @@ -25,3 +29,5 @@ int32_t scriptfile_eof(scriptfile *sf); int32_t scriptfile_getsymbolvalue(char *name, int32_t *val); int32_t scriptfile_addsymbolvalue(char *name, int32_t val); void scriptfile_clearsymbols(void); + +#endif