From ca9b813aea75b843f17f0248422c859b20cbf32c Mon Sep 17 00:00:00 2001 From: John Johansen Date: Thu, 16 Feb 2012 08:16:18 -0800 Subject: [PATCH] Add missing ifdefs in parser.h Signed-off-by: John Johansen Acked-by: Kees Cook --- parser/parser.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/parser/parser.h b/parser/parser.h index 1da5b875d..31ffe75fb 100644 --- a/parser/parser.h +++ b/parser/parser.h @@ -19,6 +19,9 @@ * Ltd. */ +#ifndef __AA_PARSER_H +#define __AA_PARSER_H + #include #include #include "immunix.h" @@ -397,3 +400,5 @@ void yyerror(char *msg, ...) } #endif + +#endif /** __AA_PARSER_H */