+Thu Jul 13 15:40:56 1995 Sam Hartman <hartmans@tertius.mit.edu>
+
+ * com_err.h: error_message should be const char * (as it is in
+ error_message.c), not char const * (as currently presented).
+
+Alspo, since error_message
+ets declared const even on non-ansi compilers, set the return type that way so AIX cc doesn't barf.
+
Wed Jul 12 12:37:24 1995 Ezra Peisach <epeisach@kangaroo.mit.edu>
* error_message.c: Do not include stdlib.h unless it exists
#if defined(__STDC__) || defined(_WINDOWS)
/* ANSI C -- use prototypes etc */
extern void INTERFACE_C com_err (const char FAR *, long, const char FAR *, ...);
-extern char const FAR * INTERFACE error_message (long);
+extern const char 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);
#else
/* no prototypes */
extern void INTERFACE_C com_err ();
-extern char * INTERFACE error_message ();
+extern const char * INTERFACE error_message ();
extern void (*com_err_hook) ();
extern void (*set_com_err_hook ()) ();
extern void (*reset_com_err_hook ()) ();