[3959] in Athena Bugs
Fix to build com_err on AIX
daemon@ATHENA.MIT.EDU (John Carr)
Fri Jan 12 17:35:35 1990
To: bugs@ATHENA.MIT.EDU, bug-sipb@ATHENA.MIT.EDU
Date: Fri, 12 Jan 90 17:35:11 EST
From: John Carr <jfc@ATHENA.MIT.EDU>
I don't know who's responsible for this package, so I'm sending to
both bugs and bug-sipb.
The file "internal.h" declares perror(); since AIX declares this
function elsewhere this causes an error. The fix is to make the
end of the file look like:
#ifndef AIX
#ifdef __STDC__
int perror (const char *);
#else
int perror ();
#endif
#endif