diff options
author | david <> | 2003-08-02 01:24:36 +0000 |
---|---|---|
committer | david <> | 2003-08-02 01:24:36 +0000 |
commit | 8aec880e628f94a8e6893d2f9e075504342db194 (patch) | |
tree | fe372a59b727fb908346da7927055bdef5ea803b /src/regress/lib | |
parent | 65e9b95a103acfa20254ba144a5102e765ec7f82 (diff) | |
download | openbsd-8aec880e628f94a8e6893d2f9e075504342db194.tar.gz openbsd-8aec880e628f94a8e6893d2f9e075504342db194.tar.bz2 openbsd-8aec880e628f94a8e6893d2f9e075504342db194.zip |
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'src/regress/lib')
-rw-r--r-- | src/regress/lib/libc/alloca/alloca.c | 3 | ||||
-rw-r--r-- | src/regress/lib/libc/popen/popen.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libc/alloca/alloca.c b/src/regress/lib/libc/alloca/alloca.c index 1c26429293..14ef87b29a 100644 --- a/src/regress/lib/libc/alloca/alloca.c +++ b/src/regress/lib/libc/alloca/alloca.c | |||
@@ -1,8 +1,9 @@ | |||
1 | /* $OpenBSD: alloca.c,v 1.4 2003/07/31 21:48:02 deraadt Exp $ */ | 1 | /* $OpenBSD: alloca.c,v 1.5 2003/08/02 01:24:36 david Exp $ */ |
2 | 2 | ||
3 | /* Written by Michael Shalayeff, 2003, Public Domain. */ | 3 | /* Written by Michael Shalayeff, 2003, Public Domain. */ |
4 | 4 | ||
5 | #include <stdio.h> | 5 | #include <stdio.h> |
6 | #include <string.h> | ||
6 | 7 | ||
7 | int | 8 | int |
8 | main(int argc, char *argv[]) | 9 | main(int argc, char *argv[]) |
diff --git a/src/regress/lib/libc/popen/popen.c b/src/regress/lib/libc/popen/popen.c index 491c5becea..95ea67f31b 100644 --- a/src/regress/lib/libc/popen/popen.c +++ b/src/regress/lib/libc/popen/popen.c | |||
@@ -38,6 +38,7 @@ | |||
38 | 38 | ||
39 | #include <sys/param.h> | 39 | #include <sys/param.h> |
40 | 40 | ||
41 | #include <err.h> | ||
41 | #include <errno.h> | 42 | #include <errno.h> |
42 | #include <paths.h> | 43 | #include <paths.h> |
43 | #include <stdio.h> | 44 | #include <stdio.h> |