diff options
author | David Krause <david@cvs.openbsd.org> | 2003-07-10 00:06:53 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2003-07-10 00:06:53 +0000 |
commit | ff1eebe32bb029e20710e7ca1756911d42d46fbf (patch) | |
tree | 009ea3b0cb6633dd34add944159e34a4915266d3 /usr.bin/paste | |
parent | 6c3b78320db59d66733755dd77e5d095dec46f61 (diff) |
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'usr.bin/paste')
-rw-r--r-- | usr.bin/paste/paste.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/paste/paste.c b/usr.bin/paste/paste.c index 202ef138699..0437fe13234 100644 --- a/usr.bin/paste/paste.c +++ b/usr.bin/paste/paste.c @@ -1,4 +1,4 @@ -/* $OpenBSD: paste.c,v 1.12 2003/06/10 22:20:49 deraadt Exp $ */ +/* $OpenBSD: paste.c,v 1.13 2003/07/10 00:06:51 david Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. @@ -40,10 +40,11 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)paste.c 5.7 (Berkeley) 10/30/90";*/ -static char rcsid[] = "$OpenBSD: paste.c,v 1.12 2003/06/10 22:20:49 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: paste.c,v 1.13 2003/07/10 00:06:51 david Exp $"; #endif /* not lint */ #include <sys/types.h> +#include <err.h> #include <errno.h> #include <limits.h> #include <stdio.h> |