* error_message.c: Don't declare sys_nerr on Macintosh
authorEzra Peisach <epeisach@mit.edu>
Mon, 3 Mar 1997 19:59:36 +0000 (19:59 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 3 Mar 1997 19:59:36 +0000 (19:59 +0000)
* com_err.c: Fix MacMessageBox prototype.

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

src/util/et/ChangeLog
src/util/et/com_err.c
src/util/et/error_message.c

index b227d8c2ce160cf416c1fd70c0936d9961dd90c8..086fad587062487e00d0aeaa4fa02f3f6decee41 100644 (file)
@@ -1,3 +1,9 @@
+Mon Mar  3 14:57:35 1997  Ezra Peisach  <epeisach@mit.edu>
+
+       * error_message.c: Don't declare sys_nerr on Macintosh.
+
+       * com_err.c: Fix MacMessageBox prototype.
+
 Sat Mar  1 11:54:02 1997  Sam Hartman  <hartmans@luminous.MIT.EDU>
 
        * com_err.h: Do not declare com_err_hook extern if you want it
index 8823e9eb15ee400467ced4b4333b8cd8b4a3f8ce..f9344bace203fbdb825136faff3c518e7c272dbb 100644 (file)
@@ -27,7 +27,7 @@
 #endif
 #ifdef _MACINTOSH
 #include "icons.h"
-static void MacMessageBox(errbuf);
+static void MacMessageBox(char *errbuf);
 #endif
 
 static et_old_error_hook_func com_err_hook = 0;
index 7ffe1b67a2e5c86e94524a8f882d4149c11c1fd0..81e5088c127815b10a48a1a63aaac33b14466a0e 100644 (file)
 
 #if !defined(HAVE_STRERROR) && !defined(SYS_ERRLIST_DECLARED)
 extern char const * const sys_errlist[];
+#ifndef _MACINTOSH
 extern const int sys_nerr;
 #endif
+#endif
 
 static char buffer[ET_EBUFSIZ];