From: Ken Raeburn Date: Sat, 14 Apr 2001 03:14:44 +0000 (+0000) Subject: k5-int.h: Always include stdlib.h and string.h; don't bother with HAVE_ macros X-Git-Tag: krb5-1.3-beta2~1565 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d31b30a6acb1aa6fa8f2f918b56bec332509d72b;p=thirdparty%2Fkrb5.git k5-int.h: Always include stdlib.h and string.h; don't bother with HAVE_ macros git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13178 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/ChangeLog b/src/include/ChangeLog index d706ea29fa..6d02de8573 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,8 @@ +2001-04-13 Ken Raeburn + + * k5-int.h: Always include stdlib.h and string.h; don't bother + testing the HAVE_ macros. + 2001-03-08 Ezra Peisach * krb5.hin: Add prototypes for krb5_auth_con_setpermetypes() and diff --git a/src/include/k5-int.h b/src/include/k5-int.h index bd6423ab29..d2976a4888 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -416,22 +416,8 @@ typedef struct _krb5_sam_response { #ifndef KRB5_EXT_PROTO__ #define KRB5_EXT_PROTO__ -#ifdef HAVE_STDLIB_H #include -#else -#if defined(__STDC__) || defined(_MSDOS) -#include -#else -extern char *malloc(), *realloc(), *calloc(); -extern char *getenv(); -#endif /* ! __STDC__ */ -#endif /* HAVE_STDLIB_H */ - -#ifdef HAVE_STRING_H #include -#else -#include -#endif #ifndef HAVE_STRDUP extern char *strdup (const char *);