diff options
author | dd <dd@FreeBSD.org> | 2001-06-12 03:44:35 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-12 03:44:35 +0000 |
commit | a4104a3872a967567a2496a7c088defe41f0efc1 (patch) | |
tree | b887022437bfc048e3851e8cb5c38ef527097825 /usr.bin/showmount | |
parent | fdb0c1688ae2026650f7f3b729a0f622d7e2d006 (diff) | |
download | FreeBSD-src-a4104a3872a967567a2496a7c088defe41f0efc1.zip FreeBSD-src-a4104a3872a967567a2496a7c088defe41f0efc1.tar.gz |
ANSI C prohibits text after #endif.
Reviewed by: md5(1)
Diffstat (limited to 'usr.bin/showmount')
-rw-r--r-- | usr.bin/showmount/showmount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/showmount/showmount.c b/usr.bin/showmount/showmount.c index df692ac..93d6cf5 100644 --- a/usr.bin/showmount/showmount.c +++ b/usr.bin/showmount/showmount.c @@ -38,7 +38,7 @@ static const char copyright[] = "@(#) Copyright (c) 1989, 1993, 1995\n\ The Regents of the University of California. All rights reserved.\n"; -#endif not lint +#endif /* not lint */ #ifndef lint #if 0 @@ -46,7 +46,7 @@ static char sccsid[] = "@(#)showmount.c 8.3 (Berkeley) 3/29/95"; #endif static const char rcsid[] = "$FreeBSD$"; -#endif not lint +#endif /* not lint */ #include <sys/types.h> #include <sys/queue.h> |