diff options
author | 1997-09-22 05:45:26 +0000 | |
---|---|---|
committer | 1997-09-22 05:45:26 +0000 | |
commit | 71eaa2b5019ddca8beb9154691db120fda984c3c (patch) | |
tree | 67435032c96b18ee5c5b24b6244cee5b7555dd80 /usr.bin/patch/common.h | |
parent | Use our own fnmatch(). (diff) | |
download | wireguard-openbsd-71eaa2b5019ddca8beb9154691db120fda984c3c.tar.xz wireguard-openbsd-71eaa2b5019ddca8beb9154691db120fda984c3c.zip |
Start of -Wall and cleaning up icky bits.
Diffstat (limited to 'usr.bin/patch/common.h')
-rw-r--r-- | usr.bin/patch/common.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/patch/common.h b/usr.bin/patch/common.h index 2399724954a..8a0203c2df0 100644 --- a/usr.bin/patch/common.h +++ b/usr.bin/patch/common.h @@ -1,4 +1,4 @@ -/* $OpenBSD: common.h,v 1.8 1997/09/06 23:51:31 niklas Exp $ */ +/* $OpenBSD: common.h,v 1.9 1997/09/22 05:45:26 millert Exp $ */ #define DEBUGGING @@ -30,9 +30,12 @@ #include <sys/types.h> #include <sys/file.h> #include <sys/stat.h> +#include <sys/param.h> #include <ctype.h> +#include <paths.h> #include <signal.h> #include <stdlib.h> +#include <unistd.h> #undef malloc #undef realloc |