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).
This commit is contained in:
trhodes 2003-11-01 15:58:06 +00:00
parent 5a6b890ac2
commit bdb0caaa2d

View File

@ -36,14 +36,11 @@
* 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>