HPUX-es vsnprintf and Ultrix-es atexit declaration
authorBruce Korb <korbb@gcc.gnu.org>
Tue, 17 Jul 2001 03:02:52 +0000 (03:02 +0000)
committerBruce Korb <korbb@gcc.gnu.org>
Tue, 17 Jul 2001 03:02:52 +0000 (03:02 +0000)
From-SVN: r44058

gcc/ChangeLog
gcc/fixinc/inclhack.def

index f012bdae56cb202f319985620a8d360b85cf35e4..ae9789bd0b4322bf3dc7f3c7d7455e129dd99717 100644 (file)
@@ -1,3 +1,12 @@
+2001-07-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
+
+       * inclhack.def (ultrix_atexit_param): New hack to fix ultrix 4.3
+       atexit declaration in stdlib.h.
+
+2001-07-16  Richard Begg  <Richard.Begg@colesmyer.com.au>
+
+       * fixinc/inclhack.def(hpux_vsnprintf): brokenness in stdio.h
+
 Mon Jul 16 22:48:00 CEST 2001  Jan Hubicka  <jh@suse.cz>
 
        * basic-block.h (CLEANUP_PRE_SIBCALL): New constant.
index 510bb7923684c8a053bdcde83de1835d8b67784b..21e83663eeb1d419c39a2ce9b0195ec8f48243f8 100644 (file)
@@ -1243,6 +1243,24 @@ fix = {
 };
 
 
+/*
+ *  Fix hpux 11.00 broken vsnprintf declaration
+ */
+fix = {
+    hackname = hpux11_vsnprintf;
+    files    = stdio.h;
+    select   = 'extern int vsnprintf\(char \*, __size_t, const char \*,'
+                                     ' __va__list\);';
+
+    c_fix     = format;
+    c_fix_arg = "extern int vsnprintf(char *, __size_t, const char *,"
+                                     " __va_list);";
+
+    test_text = 'extern int vsnprintf(char *, __size_t, const char *,'
+                                     ' __va__list);';
+};
+
+
 /*
  *  get rid of bogus inline definitions in HP-UX 8.0
  */
@@ -2868,6 +2886,21 @@ fix = {
 };
 
 
+/*
+ *  function parameter to atexit is missing "void" on VAX Ultrix 4.3.
+ */
+fix = {
+    hackname = ultrix_atexit_param;
+    files    = stdlib.h;
+    select   = 'atexit\(.*\(\)';
+
+    c_fix     = format;
+    c_fix_arg = "atexit( void (*__func)( void )";
+
+    test_text = "int atexit( void (*__func)() );\n";
+};
+
+
 /*
  *  parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
  */