* src/common.h: added ifndef/define/endif macros
around the header file.
Bug reported from Jesus Calvino-Fraga
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3084
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2004-01-06 Vangelis Rokas <vrokas@otenet.gr>
+
+ * src/common.h: added ifndef/define/endif macros
+ around the header file.
+ Bug reported from Jesus Calvino-Fraga
+
2004-01-06 Bernhard Held <bernhard@bernhardheld.de>
* sdcc.spec: updated
#include <string.h>
#include <assert.h>
+
+#ifndef COMMON_H
+#define COMMON_H
+
#if defined(__APPLE__) && (__MACH__)
#ifdef _G
#undef _G
#include "port.h"
#include "newalloc.h"
+
+#endif