system.h (sbrk, [...]): Backup prototypes changed from extern char *, to extern PTR.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Wed, 8 Sep 1999 19:42:01 +0000 (19:42 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Wed, 8 Sep 1999 19:42:01 +0000 (19:42 +0000)
* system.h (sbrk, malloc, calloc, realloc): Backup prototypes
changed from extern char *, to extern PTR.  Also fix typo in
NEED_DECLARATION_REALLOC test.

* mips-tdump.c (malloc, calloc, realloc): Don't prototype.

From-SVN: r29210

gcc/ChangeLog
gcc/mips-tdump.c
gcc/system.h

index 08c2e15b35aef2082aca3dbfb7315b29222aafb0..1d2296a2c3c0b410fa6aba907c10720f2d75c8a5 100644 (file)
@@ -1,3 +1,11 @@
+Wed Sep  8 15:32:16 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * system.h (sbrk, malloc, calloc, realloc): Backup prototypes
+       changed from extern char *, to extern PTR.  Also fix typo in
+       NEED_DECLARATION_REALLOC test.
+
+       * mips-tdump.c (malloc, calloc, realloc): Don't prototype.
+       
 Wed Sep  8 11:40:47 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * gansidecl.h (__attribute__, ATTRIBUTE_UNUSED_LABEL,
index fd70e51d88ec3c11e79f4368d376136022eb2847..d82d0ac6c2e884bcf6aa6d2881649f8a58cf5aea 100644 (file)
@@ -262,18 +262,6 @@ const char *glevel_to_string       __proto((glevel_t));
 const char *lang_to_string     __proto((lang_t));
 const char *type_to_string     __proto((AUXU *, int, FDR *));
 
-#ifndef __alpha
-# ifdef NEED_DECLARATION_MALLOC
-extern PTR_T   malloc  __proto((size_t));
-# endif
-# ifdef NEED_DECLARATION_CALLOC
-extern PTR_T   calloc  __proto((size_t, size_t));
-# endif
-# ifdef NEED_DECLARATION_REALLOC
-extern PTR_T   realloc __proto((PTR_T, size_t));
-# endif
-#endif
-
 extern char *optarg;
 extern int   optind;
 extern int   opterr;
index 0f960aff3489d50f0989836cf47c5b6c6b238d64..960e174f0560ed48d915c1c020bf7856ab587018 100644 (file)
@@ -338,7 +338,7 @@ extern char *getwd ();
 #endif
 
 #ifdef NEED_DECLARATION_SBRK
-extern char *sbrk ();
+extern PTR sbrk ();
 #endif
 
 #ifdef NEED_DECLARATION_STRSTR
@@ -350,15 +350,15 @@ extern char *strstr ();
 #endif
 
 #ifdef NEED_DECLARATION_MALLOC
-extern char *malloc ();
+extern PTR malloc ();
 #endif
 
 #ifdef NEED_DECLARATION_CALLOC
-extern char *calloc ();
+extern PTR calloc ();
 #endif
 
-#ifdef NEED_DECLARATION_REMALLOC
-extern char *realloc ();
+#ifdef NEED_DECLARATION_REALLOC
+extern PTR realloc ();
 #endif
 
 #ifdef HAVE_STRERROR