From: borutr Date: Sat, 9 Dec 2006 22:20:24 +0000 (+0000) Subject: * support/cpp2/sdcc.h: prevent multiple inclusion X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=bc438f8bf9e7d912a41aa1087f8254ad5c0fed9a;p=fw%2Fsdcc * support/cpp2/sdcc.h: prevent multiple inclusion * support/cpp2/options.h: deleted git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4507 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 4aaba94e..3c9251ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-12-09 Borut Razem + + * support/cpp2/sdcc.h: prevent multiple inclusion + * support/cpp2/options.h: deleted + 2006-12-08 Borut Razem * support/cpp2/sdcc.h: removed x*alloc() macros diff --git a/support/cpp2/options.h b/support/cpp2/options.h deleted file mode 100644 index e69de29b..00000000 diff --git a/support/cpp2/sdcc.h b/support/cpp2/sdcc.h index 90922d8d..dd917df6 100644 --- a/support/cpp2/sdcc.h +++ b/support/cpp2/sdcc.h @@ -1,3 +1,6 @@ +#ifndef __SDCC_H +#define __SDCC_H + /* * From defaults.h */ @@ -36,3 +39,5 @@ #ifndef GTY #define GTY(X) #endif + +#endif /* __SDCC_H */