Deleted Added
full compact
df.c (108452) df.c (114433)
1/*
2 * Copyright (c) 1980, 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 */
38
1/*
2 * Copyright (c) 1980, 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 */
38
39#if 0
39#ifndef lint
40static const char copyright[] =
41"@(#) Copyright (c) 1980, 1990, 1993, 1994\n\
42 The Regents of the University of California. All rights reserved.\n";
43#endif /* not lint */
44
45#ifndef lint
40#ifndef lint
41static const char copyright[] =
42"@(#) Copyright (c) 1980, 1990, 1993, 1994\n\
43 The Regents of the University of California. All rights reserved.\n";
44#endif /* not lint */
45
46#ifndef lint
46#if 0
47static char sccsid[] = "@(#)df.c 8.9 (Berkeley) 5/8/95";
47static char sccsid[] = "@(#)df.c 8.9 (Berkeley) 5/8/95";
48#endif
49#endif /* not lint */
48#endif /* not lint */
49#endif
50#include <sys/cdefs.h>
50#include <sys/cdefs.h>
51__FBSDID("$FreeBSD: head/bin/df/df.c 108452 2002-12-30 18:10:37Z mike $");
51__FBSDID("$FreeBSD: head/bin/df/df.c 114433 2003-05-01 16:58:57Z obrien $");
52
53#include <sys/param.h>
54#include <sys/stat.h>
55#include <sys/mount.h>
56#include <sys/sysctl.h>
57#include <ufs/ufs/ufsmount.h>
58#include <err.h>
59#include <math.h>

--- 489 unchanged lines hidden ---
52
53#include <sys/param.h>
54#include <sys/stat.h>
55#include <sys/mount.h>
56#include <sys/sysctl.h>
57#include <ufs/ufs/ufsmount.h>
58#include <err.h>
59#include <math.h>

--- 489 unchanged lines hidden ---