Deleted Added
full compact
mount_std.c (52055) mount_std.c (78732)
1/*
2 * Copyright (c) 1990, 1992 Jan-Simon Pendry
3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Jan-Simon Pendry.
8 *

--- 29 unchanged lines hidden (view full) ---

38#ifndef lint
39static const char copyright[] =
40"@(#) Copyright (c) 1992, 1993, 1994\n\
41 The Regents of the University of California. All rights reserved.\n";
42#endif /* not lint */
43
44#ifndef lint
45static const char rcsid[] =
1/*
2 * Copyright (c) 1990, 1992 Jan-Simon Pendry
3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Jan-Simon Pendry.
8 *

--- 29 unchanged lines hidden (view full) ---

38#ifndef lint
39static const char copyright[] =
40"@(#) Copyright (c) 1992, 1993, 1994\n\
41 The Regents of the University of California. All rights reserved.\n";
42#endif /* not lint */
43
44#ifndef lint
45static const char rcsid[] =
46 "$FreeBSD: head/sbin/mount_std/mount_std.c 52055 1999-10-09 11:54:14Z phk $";
46 "$FreeBSD: head/sbin/mount_std/mount_std.c 78732 2001-06-24 23:04:23Z dd $";
47#endif /* not lint */
48
49#include <sys/param.h>
50#include <sys/mount.h>
51
52#include <err.h>
53#include <stdio.h>
47#endif /* not lint */
48
49#include <sys/param.h>
50#include <sys/mount.h>
51
52#include <err.h>
53#include <stdio.h>
54#include <stdlib.h>
54#include <string.h>
55#include <sysexits.h>
56#include <unistd.h>
57
58#include "mntopts.h"
59
60static struct mntopt mopts[] = {
61 MOPT_STDOPTS,

--- 74 unchanged lines hidden ---
55#include <string.h>
56#include <sysexits.h>
57#include <unistd.h>
58
59#include "mntopts.h"
60
61static struct mntopt mopts[] = {
62 MOPT_STDOPTS,

--- 74 unchanged lines hidden ---