diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-10 07:28:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-10 07:28:01 +0000 |
commit | 95a593a6173b85d3b2699a98cada470362e7b0ed (patch) | |
tree | d401425f86f2ec53c3ee7daeae5362a356f676d6 | |
parent | 9e7b57ade6273cbd06e5aed1ed69dc20ba4cc058 (diff) |
pull string.h at right place
-rw-r--r-- | sys/lib/libsa/exec.c | 4 | ||||
-rw-r--r-- | sys/lib/libsa/ufs.c | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/sys/lib/libsa/exec.c b/sys/lib/libsa/exec.c index ba82c940aba..02300ffc300 100644 --- a/sys/lib/libsa/exec.c +++ b/sys/lib/libsa/exec.c @@ -1,4 +1,4 @@ -/* $NetBSD: exec.c,v 1.12 1996/05/14 10:28:18 leo Exp $ */ +/* $NetBSD: exec.c,v 1.12.4.1 1996/06/02 12:08:48 ragge Exp $ */ /*- * Copyright (c) 1982, 1986, 1990, 1993 @@ -33,13 +33,13 @@ * SUCH DAMAGE. */ -#include <string.h> #include <sys/param.h> #include <sys/reboot.h> #ifndef INSECURE #include <sys/stat.h> #endif #include <a.out.h> +#include <string.h> #include "stand.h" diff --git a/sys/lib/libsa/ufs.c b/sys/lib/libsa/ufs.c index 041ebb90a27..3b53adaaa27 100644 --- a/sys/lib/libsa/ufs.c +++ b/sys/lib/libsa/ufs.c @@ -1,4 +1,4 @@ -/* $NetBSD: ufs.c,v 1.14 1996/01/13 22:25:44 leo Exp $ */ +/* $NetBSD: ufs.c,v 1.14.4.1 1996/06/02 12:08:45 ragge Exp $ */ /*- * Copyright (c) 1993 @@ -66,7 +66,6 @@ * Stand-alone file reading package. */ -#include <string.h> #include <sys/param.h> #include <sys/time.h> #include <ufs/ffs/fs.h> @@ -74,6 +73,8 @@ #include <ufs/ufs/dir.h> #include <lib/libkern/libkern.h> +#include <string.h> + #include "stand.h" /* |