diff options
author | dgregor <dgregor@cvs.openbsd.org> | 1997-06-24 02:44:46 +0000 |
---|---|---|
committer | dgregor <dgregor@cvs.openbsd.org> | 1997-06-24 02:44:46 +0000 |
commit | 3b0b93f0c3f7c06b4273ee7798516deda393b195 (patch) | |
tree | 4fc8d63b050b9d0f32630b071bf47cada5b03b63 /usr.bin | |
parent | b97ece511128283a62622b08198f7e0bda0cb37b (diff) |
Add #includes for string.h and stdlib.h
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/window/defs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/window/defs.h b/usr.bin/window/defs.h index 691f8f8de34..aff43d26a95 100644 --- a/usr.bin/window/defs.h +++ b/usr.bin/window/defs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: defs.h,v 1.3 1997/02/25 00:04:03 downsj Exp $ */ +/* $OpenBSD: defs.h,v 1.4 1997/06/24 02:44:45 dgregor Exp $ */ /* $NetBSD: defs.h,v 1.3 1995/09/28 10:34:19 tls Exp $ */ /* @@ -41,6 +41,8 @@ #include "ww.h" #include <sys/time.h> +#include <stdlib.h> +#include <string.h> #define NWINDOW 9 |