From: Richard Kenner Date: Thu, 7 Oct 1993 21:26:41 +0000 (-0400) Subject: Always declare malloc, realloc, etc, to be void *. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d4750f117cc0116d72a1614b6613f49ec634363;p=gcc.git Always declare malloc, realloc, etc, to be void *. From-SVN: r5663 --- diff --git a/gcc/config/alpha/xm-alpha.h b/gcc/config/alpha/xm-alpha.h index 61919ce54d5..cbd8d9c7a65 100644 --- a/gcc/config/alpha/xm-alpha.h +++ b/gcc/config/alpha/xm-alpha.h @@ -57,10 +57,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ include these in the sources since other machines might define them differently. */ -#ifdef __STDC__ extern void *malloc (), *realloc (), *sbrk (), *calloc (), *alloca (); -#else -extern char *malloc (), *realloc (), *sbrk (), *calloc (), *alloca (); -#endif #include "string.h"