diff options
Diffstat (limited to 'usr.bin/uuencode/uuencode.c')
| -rw-r--r-- | usr.bin/uuencode/uuencode.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/uuencode/uuencode.c b/usr.bin/uuencode/uuencode.c index e0a3eedf083..77096a05d77 100644 --- a/usr.bin/uuencode/uuencode.c +++ b/usr.bin/uuencode/uuencode.c @@ -33,7 +33,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)uuencode.c 5.9 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: uuencode.c,v 1.3 1993/08/27 22:30:57 jtc Exp $"; +static char rcsid[] = "$Id: uuencode.c,v 1.4 1993/10/13 18:34:49 jtc Exp $"; #endif /* not lint */ /* @@ -41,12 +41,13 @@ static char rcsid[] = "$Id: uuencode.c,v 1.3 1993/08/27 22:30:57 jtc Exp $"; * * Encode a file so it can be mailed to a remote system. */ -#include <sys/types.h> -#include <sys/stat.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> static void encode(); static void usage(); |
