aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_cd9660/mount_cd9660.c
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2003-11-01 15:58:06 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2003-11-01 15:58:06 +0000
commit31212c21bfd7cd3d276dd91f2bf013cf65aad6a8 (patch)
tree991a3ec281d5c0ec634241ad76bb70babc1f5883 /sbin/mount_cd9660/mount_cd9660.c
parent9185a9f5e37fc8d726ecff9f3283c50e85c68021 (diff)
The copywrite is not a 'static char', remove the #ifdefs and move the copywrite up
into the commented out 'copywrite' section. Include sys/linker.h for kldload(3).
Notes
Notes: svn path=/head/; revision=121860
Diffstat (limited to 'sbin/mount_cd9660/mount_cd9660.c')
-rw-r--r--sbin/mount_cd9660/mount_cd9660.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c
index 74e4f2184ebd..b36bcbdf3112 100644
--- a/sbin/mount_cd9660/mount_cd9660.c
+++ b/sbin/mount_cd9660/mount_cd9660.c
@@ -36,15 +36,12 @@
* 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";
*/
@@ -55,6 +52,7 @@ 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>