All routines defined in the com_err library should have extern before
authorTheodore Tso <tytso@mit.edu>
Fri, 3 Feb 1995 13:39:27 +0000 (13:39 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 3 Feb 1995 13:39:27 +0000 (13:39 +0000)
the prototypes.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4894 dc483132-0cff-0310-8789-dd5450dbe970

src/util/et/ChangeLog
src/util/et/com_err.h

index d7fb476dd63b438c89475a769d5cd659c45801dc..87344e1df410031cb22dd487c4a2e590a5bb0c02 100644 (file)
@@ -1,3 +1,9 @@
+Fri Feb  3 08:11:26 1995  Theodore Y. Ts'o  (tytso@dcl)
+
+       * com_err.h: All routines defined in the com_err library should
+               have extern before the prototypes.   (Required for SGI
+               platform).
+
 Wed Jan 25 20:48:50 1995  Mark Eichin  (eichin@tweedledumber.cygnus.com)
 
        * Makefile.in (SRCS): add com_err.c explicit dependency to work
index 0190a3ee8f10eef5325c8860af47da6e8b88a698..98a540084bdfe7c00c9ebccb8b8acc312c5440e9 100644 (file)
 
 #ifdef __STDC__
 /* ANSI C -- use prototypes etc */
-void com_err (const char *, long, const char *, ...);
-char const *error_message (long);
-void (*com_err_hook) (const char *, long, const char *, va_list);
-void (*set_com_err_hook (void (*) (const char *, long, const char *, va_list)))
+extern void com_err (const char *, long, const char *, ...);
+extern char const *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);
-void (*reset_com_err_hook ()) (const char *, long, const char *, va_list);
+extern void (*reset_com_err_hook ()) (const char *, long, const char *, va_list);
 #else
 /* no prototypes */
-void com_err ();
-char *error_message ();
-void (*com_err_hook) ();
-void (*set_com_err_hook ()) ();
-void (*reset_com_err_hook ()) ();
+extern void com_err ();
+extern char *error_message ();
+extern void (*com_err_hook) ();
+extern void (*set_com_err_hook ()) ();
+extern void (*reset_com_err_hook ()) ();
 #endif
 
 #define __COM_ERR_H