diff options
author | trhodes <trhodes@FreeBSD.org> | 2003-11-01 16:57:19 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2003-11-01 16:57:19 +0000 |
commit | d6171b5a7b2fc0c6699bdde44d1b068e2664d310 (patch) | |
tree | b2e7a1378538b6f3e4fb25d32e7911ee46c62cca /sbin/mount_cd9660 | |
parent | f17836f33fdb88580a5490293ce4bc9458035d3c (diff) | |
download | FreeBSD-src-d6171b5a7b2fc0c6699bdde44d1b068e2664d310.zip FreeBSD-src-d6171b5a7b2fc0c6699bdde44d1b068e2664d310.tar.gz |
Revert the first part of my previous change.
Requested by: wollman
Diffstat (limited to 'sbin/mount_cd9660')
-rw-r--r-- | sbin/mount_cd9660/mount_cd9660.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c index b36bcbd..74e4f21 100644 --- a/sbin/mount_cd9660/mount_cd9660.c +++ b/sbin/mount_cd9660/mount_cd9660.c @@ -36,12 +36,15 @@ * SUCH DAMAGE. * * @(#)mount_cd9660.c 8.7 (Berkeley) 5/1/95 - * - * @(#) Copyright (c) 1992, 1993, 1994 - * The Regents of the University of California. All rights reserved. */ #ifndef lint +static char copyright[] = +"@(#) Copyright (c) 1992, 1993, 1994\n\ + The Regents of the University of California. All rights reserved.\n"; +#endif /* not lint */ + +#ifndef lint /* static char sccsid[] = "@(#)mount_cd9660.c 8.7 (Berkeley) 5/1/95"; */ @@ -52,7 +55,6 @@ static const char rcsid[] = #include <sys/cdio.h> #include <sys/file.h> #include <sys/param.h> -#include <sys/linker.h> #include <sys/mount.h> #include <sys/../isofs/cd9660/cd9660_mount.h> #include <sys/module.h> |