1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-20 02:38:43 +00:00

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:
Tom Rhodes 2003-11-01 15:58:06 +00:00
parent 9185a9f5e3
commit 31212c21bf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121860

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>