malloc changes for new gnu include files
authorJohn Kohl <jtkohl@mit.edu>
Fri, 1 Feb 1991 18:52:18 +0000 (18:52 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Fri, 1 Feb 1991 18:52:18 +0000 (18:52 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1645 dc483132-0cff-0310-8789-dd5450dbe970

src/include/fake-stdlib.h

index 20393c06d0396f77f73655e8f51278e48c2eb832..1ef9b2d69281356df000512fb191a3837ddbaaa2 100644 (file)
@@ -193,7 +193,11 @@ char *initstate P((unsigned , char *, int ));
 int isatty P((int ));
 double ldexp P((double , int ));
 int longjmperror P((void ));
+#ifdef __STDC__
+void *malloc P((size_t ));
+#else
 char *malloc P((unsigned ));
+#endif
 char *memccpy P((char *, char *, int , int ));
 char *memchr P((char *, int , int ));
 int memcmp P((char *, char *, int ));
@@ -450,7 +454,11 @@ struct ttyent *getttyent P((void ));
 struct ttyent *getttynam P((const char * ));
 unsigned long inet_network P((const char * ));
 int initgroups P((char * , int  ));
+#ifdef __STDC__
+void *malloc P((unsigned ));
+#else
 char *malloc P((unsigned ));
+#endif
 char *calloc P((unsigned , unsigned  ));
 char *realloc P((char * , unsigned  ));
 void free P((char * ));