* config/ho-hpux.h: Do not include ho-sysv.h. Instead include
authorJeff Law <law@redhat.com>
Tue, 2 Nov 1993 23:38:41 +0000 (23:38 +0000)
committerJeff Law <law@redhat.com>
Tue, 2 Nov 1993 23:38:41 +0000 (23:38 +0000)
standard hpux include files to pick up various function decls.

gas/config/ho-hpux.h

index ebea9e2d6c94190144ddee53a2bab2e20e92a53e..23310d7703489d72b870f6461e760ac881251e81 100644 (file)
@@ -17,8 +17,6 @@
    along with GAS; see the file COPYING.  If not, write to
    the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
-#include "ho-sysv.h"
-
 /* This header file contains the #defines specific
    to HPUX changes sent me by cph@zurich.ai.mit.edu */
 #ifndef hpux
 
 #define setbuffer(stream, buf, size)
 
+/* Some basic include files.  Avoid including ho-sysv.h as it defines
+   malloc and free and the declarations do not match what HPUX puts
+   in its include files!  Declaring such system functions is not all
+   that good of an idea.  */
+#include <ctype.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+
 /* end of ho-hpux.h */