+2001-04-13 Ken Raeburn <raeburn@mit.edu>
+
+ * k5-int.h: Always include stdlib.h and string.h; don't bother
+ testing the HAVE_ macros.
+
2001-03-08 Ezra Peisach <epeisach@mit.edu>
* krb5.hin: Add prototypes for krb5_auth_con_setpermetypes() and
#ifndef KRB5_EXT_PROTO__
#define KRB5_EXT_PROTO__
-#ifdef HAVE_STDLIB_H
#include <stdlib.h>
-#else
-#if defined(__STDC__) || defined(_MSDOS)
-#include <fake-stdlib.h>
-#else
-extern char *malloc(), *realloc(), *calloc();
-extern char *getenv();
-#endif /* ! __STDC__ */
-#endif /* HAVE_STDLIB_H */
-
-#ifdef HAVE_STRING_H
#include <string.h>
-#else
-#include <strings.h>
-#endif
#ifndef HAVE_STRDUP
extern char *strdup (const char *);