diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/util/et/ChangeLog | 4 | ||||
-rw-r--r-- | src/util/et/com_err.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog index 666514f92..6c90c72f9 100644 --- a/src/util/et/ChangeLog +++ b/src/util/et/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 14 08:48:00 1995 Theodore Y. Ts'o (tytso@dcl) + + * com_err.h: If FAR is not defined, define it away. + Thu Apr 13 16:02:24 1995 Keith Vetter (keithv@fusion.com) * com_err.c, compile_et.c, error_ta.h, et_c.awk, internal.h: diff --git a/src/util/et/com_err.h b/src/util/et/com_err.h index 749ee05d9..461558876 100644 --- a/src/util/et/com_err.h +++ b/src/util/et/com_err.h @@ -38,6 +38,9 @@ #define INTERFACE_C #endif #endif +#ifndef FAR +#define FAR +#endif #if defined(__STDC__) || defined(_WINDOWS) /* ANSI C -- use prototypes etc */ |