From 917fc124421eb14005bc7252dee5526697be1cc1 Mon Sep 17 00:00:00 2001 From: "shaver%netscape.com" Date: Thu, 27 Aug 1998 05:54:56 +0000 Subject: [PATCH] protect against multiple inclusion (possibe now with DOM/layout/libmocha) git-svn-id: svn://10.0.0.236/trunk@8603 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/lib/libparse/pa_parse.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mozilla/lib/libparse/pa_parse.h b/mozilla/lib/libparse/pa_parse.h index 74d4204ba0e..f5d4f900816 100644 --- a/mozilla/lib/libparse/pa_parse.h +++ b/mozilla/lib/libparse/pa_parse.h @@ -16,6 +16,9 @@ * Reserved. */ +#ifndef PA_PARSE_H +#define PA_PARSE_H + #include "xp.h" #include "pa_tags.h" #include "edttypes.h" @@ -129,3 +132,4 @@ extern void pa_FlushOverflow(NET_StreamClass *stream); extern intn LO_Format(int32, PA_Tag *, intn); */ + #endif /* PA_PARSE_H */