blob: 5d6ed9e54a6a6b2da55c6e5bdc7c5e8f85bef591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
diff --exclude 'Makefile*' --exclude '*~' -ur ecl-0.9e.orig/src/h/ecl.h ecl-0.9e/src/h/ecl.h
--- ecl-0.9e.orig/src/h/ecl.h 2004-11-29 18:46:38.000000000 -0600
+++ ecl-0.9e/src/h/ecl.h 2004-11-29 21:13:29.099069235 -0600
@@ -13,6 +13,9 @@
See file '../Copyright' for full details.
*/
+#ifndef __ECL_H__
+#define __ECL_H__
+
#ifndef _MSC_VER
#include <sys/param.h> /* includes <sys/signal.h> and <sys/types.h> */
#else
@@ -54,3 +57,5 @@
#ifdef LOCATIVE
#include <unify.h>
#endif
+
+#endif
diff --exclude 'Makefile*' --exclude '*~' -ur ecl-0.9e.orig/src/h/object.h ecl-0.9e/src/h/object.h
--- ecl-0.9e.orig/src/h/object.h 2004-11-29 18:46:38.000000000 -0600
+++ ecl-0.9e/src/h/object.h 2004-11-29 21:13:07.333474284 -0600
@@ -22,8 +22,13 @@
Integer and boolean types (see config.h)
*/
+#ifndef TRUE
#define TRUE 1 /* boolean true value */
+#endif
+
+#ifndef FALSE
#define FALSE 0 /* boolean false value */
+#endif
#define CHAR_CODE_LIMIT 256 /* ASCII character code limit */
|