* acl_files.c: Do not declare malloc() or calloc() if stdlib.h exists
authorEzra Peisach <epeisach@mit.edu>
Tue, 18 Feb 1997 15:00:54 +0000 (15:00 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 18 Feb 1997 15:00:54 +0000 (15:00 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9900 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/v4server/ChangeLog
src/kadmin/v4server/acl_files.c

index c05b4a2f32adbc458e9ccd788888b666a0ccaf88..bceda42aa17b34e7ab73a3cb1f95b370a6260475 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 18 09:59:59 1997  Ezra Peisach  <epeisach@mit.edu>
+
+       * acl_files.c: Do not declare malloc() or calloc() if stdlib.h exists.
+
 Thu Feb  6 14:49:45 1997  Tom Yu  <tlyu@voltage-multiplier.mit.edu>
 
        * Makefile.in (LOCALINCLUDE): Repair lack of -I. and -I$(srcdir)
index ae3b0c6bffe0e466c6f52d76f01cbf9faf71aa8b..853954f77d730246c0c4c60f96b796ad5f9218d0 100644 (file)
 
 extern int errno;
 
+#ifndef HAVE_STDLIB_H
 extern char *malloc(), *calloc();
+#endif
+
 extern time_t time();
 
 static int acl_abort();