diff options
author | 1996-06-10 07:27:59 +0000 | |
---|---|---|
committer | 1996-06-10 07:27:59 +0000 | |
commit | e3aa3551e0b5d209ccc23509a1f9c40373fce46c (patch) | |
tree | 0ba0ec8f03d3c3f4a432995c1ac6299447076f08 | |
parent | 64 bit clean (diff) | |
download | wireguard-openbsd-e3aa3551e0b5d209ccc23509a1f9c40373fce46c.tar.xz wireguard-openbsd-e3aa3551e0b5d209ccc23509a1f9c40373fce46c.zip |
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" /* |