* daemon.c, memmove.c, strcasecmp.c, strdup.c: Avoid <krb5/...>
authorJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 09:07:00 +0000 (09:07 +0000)
committerJohn Gilmore <gnu@toad.com>
Tue, 28 Feb 1995 09:07:00 +0000 (09:07 +0000)
includes.
* memmove.c:  Use HAS_SYS_TYPES_H.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5013 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/posix/ChangeLog
src/lib/krb5/posix/daemon.c
src/lib/krb5/posix/memmove.c
src/lib/krb5/posix/strcasecmp.c
src/lib/krb5/posix/strdup.c

index acf9ce065c1d7425de10ef51d2571b3949a0eaed..048ee35c7de0ae538427c9ea5c44c338443f7e54 100644 (file)
@@ -1,3 +1,9 @@
+Tue Feb 28 01:05:42 1995  John Gilmore  (gnu at toad.com)
+
+       * daemon.c, memmove.c, strcasecmp.c, strdup.c:  Avoid <krb5/...>
+       includes.
+       * memmove.c:  Use HAS_SYS_TYPES_H.
+
 Thu Dec 22 16:33:02 1994  Theodore Y. Ts'o  (tytso@dcl)
 
        * configure.in: 
index 8995ea03c57769c01bac09202cbde968ecb9b9b6..a752cf85f471bfb41a5fb462797f2681bb45be25 100644 (file)
@@ -38,7 +38,7 @@
 #ifdef HAS_PATHS_H
 #include <paths.h>
 #endif
-#include <krb5/autoconf.h>
+#include "k5-int.h"
 
 #ifndef _PATH_DEVNULL
 #define _PATH_DEVNULL "/dev/null"
index de1116548c35915b1943beeab57d151fae213178..5126ed26c0b77dec7e852c28320324b6a87740f6 100644 (file)
 
 /* based on @(#)bcopy.c        5.11 (Berkeley) 6/21/91 */
 
-#include <krb5/osconf.h>
-#include <krb5/config.h>
+#include "k5-int.h"
+#ifdef HAS_SYS_TYPES_H
 #include <sys/types.h>
+#endif
 #ifdef USE_STRING_H
 #include <string.h>
 #else
index 0c23f7faaaab98bbd2c057e7f2c0b98690a280e2..efc0ecaa4b7930b8f75073a9d9471d5604a51c65 100644 (file)
@@ -31,8 +31,7 @@
  * SUCH DAMAGE.
  */
 
-#include <krb5/osconf.h>
-#include <krb5/config.h>
+#include "k5-int.h"
 #include <sys/types.h>
 #ifdef USE_STRING_H
 #include <string.h>
index b0fbf51190ed2dd2c2932ea82374370f352f4eb6..c4b52bf198b726a5ec8f94cf5c818ecb0a9a9605 100644 (file)
@@ -19,8 +19,7 @@
 
 /* based on @(#)strdup.c       5.3 (Berkeley) 6/1/90 */
 
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"            /* For "const" */
 
 char *
 strdup(str)