From 97f5db42e27a6e969006d6b07362b05c2d50ea1f Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 1 Oct 2019 21:04:38 -0400 Subject: protect against multiple inclusion --- sh.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sh.h b/sh.h index ba43bac..477226d 100644 --- a/sh.h +++ b/sh.h @@ -1,3 +1,6 @@ +#ifndef SH_H +#define SH_H + /* * UNG's Not GNU * @@ -66,3 +69,5 @@ enum { HUP = 1, INT = 2, QUIT = 3, ABRT = 6, KILL = 9, ALRM = 14, TERM = 15 }; void sh_trap(int trapno); int yyparse(void); + +#endif -- cgit v1.2.1