summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/et/ChangeLog4
-rw-r--r--src/util/et/com_err.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog
index dc7212715..ea43dcd24 100644
--- a/src/util/et/ChangeLog
+++ b/src/util/et/ChangeLog
@@ -1,3 +1,7 @@
+Wed Apr 5 16:25:35 1995 Keith Vetter (keithv@fusion.com)
+
+ * com_err.h: added FAR to pointers in prototypes.
+
Wed Mar 29 08:56:47 1995 John Gilmore (gnu at toad.com)
* Makefile.in: Fix up Mac makefile.
diff --git a/src/util/et/com_err.h b/src/util/et/com_err.h
index e85965573..749ee05d9 100644
--- a/src/util/et/com_err.h
+++ b/src/util/et/com_err.h
@@ -41,8 +41,8 @@
#if defined(__STDC__) || defined(_WINDOWS)
/* ANSI C -- use prototypes etc */
-extern void INTERFACE_C com_err (const char *, long, const char *, ...);
-extern char const * INTERFACE error_message (long);
+extern void INTERFACE_C com_err (const char FAR *, long, const char FAR *, ...);
+extern char const FAR * INTERFACE error_message (long);
extern void (*com_err_hook) (const char *, long, const char *, va_list);
extern void (*set_com_err_hook (void (*) (const char *, long, const char *, va_list)))
(const char *, long, const char *, va_list);