Deleted Added
full compact
mount_nullfs.c (128073) mount_nullfs.c (141611)
1/*
2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software donated to Berkeley by
6 * Jan-Simon Pendry.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

36 The Regents of the University of California. All rights reserved.\n";
37#endif /* not lint */
38
39#ifndef lint
40#if 0
41static char sccsid[] = "@(#)mount_null.c 8.6 (Berkeley) 4/26/95";
42#endif
43static const char rcsid[] =
1/*
2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software donated to Berkeley by
6 * Jan-Simon Pendry.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

36 The Regents of the University of California. All rights reserved.\n";
37#endif /* not lint */
38
39#ifndef lint
40#if 0
41static char sccsid[] = "@(#)mount_null.c 8.6 (Berkeley) 4/26/95";
42#endif
43static const char rcsid[] =
44 "$FreeBSD: head/sbin/mount_nullfs/mount_nullfs.c 128073 2004-04-09 19:58:40Z markm $";
44 "$FreeBSD: head/sbin/mount_nullfs/mount_nullfs.c 141611 2005-02-10 09:19:34Z ru $";
45#endif /* not lint */
46
47#include <sys/param.h>
48#include <sys/mount.h>
49#include <sys/uio.h>
50
51#include <err.h>
52#include <stdio.h>

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

133
134 return (0);
135}
136
137static void
138usage()
139{
140 (void)fprintf(stderr,
45#endif /* not lint */
46
47#include <sys/param.h>
48#include <sys/mount.h>
49#include <sys/uio.h>
50
51#include <err.h>
52#include <stdio.h>

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

133
134 return (0);
135}
136
137static void
138usage()
139{
140 (void)fprintf(stderr,
141 "usage: mount_nullfs [-o options] target_fs mount_point\n");
141 "usage: mount_nullfs [-o options] target mount-point\n");
142 exit(1);
143}
142 exit(1);
143}