diff options
author | David Krause <david@cvs.openbsd.org> | 2003-08-01 22:01:39 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2003-08-01 22:01:39 +0000 |
commit | aaf2ea778011805413a4efe8fafae8212af7cfdb (patch) | |
tree | b4997d51bc85e67cacf0e502bd027670fb7f0d41 /usr.bin/window/wwprintf.c | |
parent | 7a14321ae0fa969b3b13d7f06f0ddc12bc09acab (diff) |
another round of missing system includes
ok tedu@
Diffstat (limited to 'usr.bin/window/wwprintf.c')
-rw-r--r-- | usr.bin/window/wwprintf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/window/wwprintf.c b/usr.bin/window/wwprintf.c index 88c509b8275..7b05e5e9378 100644 --- a/usr.bin/window/wwprintf.c +++ b/usr.bin/window/wwprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wwprintf.c,v 1.6 2003/06/03 02:56:23 millert Exp $ */ +/* $OpenBSD: wwprintf.c,v 1.7 2003/08/01 22:01:37 david Exp $ */ /* $NetBSD: wwprintf.c,v 1.3 1995/09/28 10:35:44 tls Exp $ */ /* @@ -37,12 +37,13 @@ #if 0 static char sccsid[] = "@(#)wwprintf.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: wwprintf.c,v 1.6 2003/06/03 02:56:23 millert Exp $"; +static char rcsid[] = "$OpenBSD: wwprintf.c,v 1.7 2003/08/01 22:01:37 david Exp $"; #endif #endif /* not lint */ #include "ww.h" #include <stdarg.h> +#include <stdio.h> wwprintf(struct ww *w, char *fmt, ...) { |