diff options
author | trhodes <trhodes@FreeBSD.org> | 2003-11-04 21:04:14 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2003-11-04 21:04:14 +0000 |
commit | 24bbc890ff2ea8e15d2056402a01b89d6b0d9584 (patch) | |
tree | 21910d5df8913c7ebbb409f834b400ac75dbed9e /sbin/mount_cd9660 | |
parent | 5604fb367ace881e5350c1a67b1b5c04dc41ca2e (diff) | |
download | FreeBSD-src-24bbc890ff2ea8e15d2056402a01b89d6b0d9584.zip FreeBSD-src-24bbc890ff2ea8e15d2056402a01b89d6b0d9584.tar.gz |
Use 'const' in the copyright stamp, this is done in other utilities.
Return linker.h to the includes list.
No objection from: wollman (for the copyright)
Diffstat (limited to 'sbin/mount_cd9660')
-rw-r--r-- | sbin/mount_cd9660/mount_cd9660.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c index 74e4f21..5fe7279 100644 --- a/sbin/mount_cd9660/mount_cd9660.c +++ b/sbin/mount_cd9660/mount_cd9660.c @@ -39,7 +39,7 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1992, 1993, 1994\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ @@ -59,6 +59,7 @@ static const char rcsid[] = #include <sys/../isofs/cd9660/cd9660_mount.h> #include <sys/module.h> #include <sys/iconv.h> +#include <sys/linker.h> #include <arpa/inet.h> |