* xm-rs6000.h: Fix decls for malloc, realloc, and free.
authorStu Grossman <grossman@cygnus>
Thu, 18 Jun 1992 00:10:11 +0000 (00:10 +0000)
committerStu Grossman <grossman@cygnus>
Thu, 18 Jun 1992 00:10:11 +0000 (00:10 +0000)
gdb/ChangeLog
gdb/xm-rs6000.h

index cb77e4b74bf014416abce338da75eb426a763778..7baa2510694413e581cfa4b07431bfa76976fad2 100644 (file)
@@ -1,5 +1,7 @@
 Wed Jun 17 13:08:33 1992  Stu Grossman  (grossman at cygnus.com)
 
+       * xm-rs6000.h:  Fix decls for malloc, realloc, and free.
+
        * xm-rs6000.h:  Add decl for strdup().
 
        * tm-rs6000.h:  Remove #include of inferior.h.  Fixes many
index b3731e6b6420c86727b3a34bc7d6154fd380d369..3ad96a65a842c9f64ba50d0e1f71e056034a873e 100644 (file)
@@ -66,8 +66,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 /* /usr/include/stdlib.h always uses void* and void,
    even when __STDC__ isn't defined. */
 #define MALLOC_INCOMPATIBLE
-extern void* malloc PARAMS (());
-extern void* realloc PARAMS (());
-extern void free PARAMS (());
+extern char *malloc();
+extern char *realloc();
+extern void free();
 
 extern char *strdup();
This page took 0.026755 seconds and 4 git commands to generate.