diff options
| -rw-r--r-- | usr.bin/truncate/truncate.1 | 6 | ||||
| -rw-r--r-- | usr.bin/truncate/truncate.c | 11 |
2 files changed, 13 insertions, 4 deletions
diff --git a/usr.bin/truncate/truncate.1 b/usr.bin/truncate/truncate.1 index dc05da68e2d6..f9f2ab605371 100644 --- a/usr.bin/truncate/truncate.1 +++ b/usr.bin/truncate/truncate.1 @@ -146,3 +146,9 @@ The .Nm utility first appeared in .Fx 5.0 . +.Sh AUTHORS +The +.Nm +utility and this manual page were written by +.An Sheldon Hearn +.Aq sheldonh@uunet.co.za . diff --git a/usr.bin/truncate/truncate.c b/usr.bin/truncate/truncate.c index 86c92f40b18b..6a167498f528 100644 --- a/usr.bin/truncate/truncate.c +++ b/usr.bin/truncate/truncate.c @@ -1,5 +1,6 @@ /* - * Copyright (c) 2000 FreeBSD, Inc. All rights reserved. + * Copyright (c) 2000 Sheldon Hearn <sheldonh@FreeBSD.org>. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -22,17 +23,19 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif + #include <sys/stat.h> -#include <sys/types.h> #include <ctype.h> #include <err.h> #include <errno.h> #include <fcntl.h> -#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> |
