Deleted Added
full compact
fstat.c (181905) fstat.c (194880)
1/*-
2 * Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)fstat.c 8.3 (Berkeley) 5/2/95";
43#endif
44#endif /* not lint */
45#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)fstat.c 8.3 (Berkeley) 5/2/95";
43#endif
44#endif /* not lint */
45#include <sys/cdefs.h>
46__FBSDID("$FreeBSD: head/usr.bin/fstat/fstat.c 181905 2008-08-20 08:31:58Z ed $");
46__FBSDID("$FreeBSD: head/usr.bin/fstat/fstat.c 194880 2009-06-24 18:42:21Z dfr $");
47
48#include <sys/param.h>
49#include <sys/time.h>
50#include <sys/proc.h>
51#include <sys/user.h>
52#include <sys/stat.h>
53#include <sys/vnode.h>
54#include <sys/socket.h>

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

68#include <sys/pipe.h>
69#include <sys/mount.h>
70#include <ufs/ufs/quota.h>
71#include <ufs/ufs/inode.h>
72#include <fs/devfs/devfs.h>
73#include <fs/devfs/devfs_int.h>
74#undef _KERNEL
75#include <nfs/nfsproto.h>
47
48#include <sys/param.h>
49#include <sys/time.h>
50#include <sys/proc.h>
51#include <sys/user.h>
52#include <sys/stat.h>
53#include <sys/vnode.h>
54#include <sys/socket.h>

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

68#include <sys/pipe.h>
69#include <sys/mount.h>
70#include <ufs/ufs/quota.h>
71#include <ufs/ufs/inode.h>
72#include <fs/devfs/devfs.h>
73#include <fs/devfs/devfs_int.h>
74#undef _KERNEL
75#include <nfs/nfsproto.h>
76#include <nfs/rpcv2.h>
77#include <nfsclient/nfs.h>
78#include <nfsclient/nfsnode.h>
79
80
81#include <vm/vm.h>
82#include <vm/vm_map.h>
83#include <vm/vm_object.h>
84

--- 935 unchanged lines hidden ---
76#include <nfsclient/nfs.h>
77#include <nfsclient/nfsnode.h>
78
79
80#include <vm/vm.h>
81#include <vm/vm_map.h>
82#include <vm/vm_object.h>
83

--- 935 unchanged lines hidden ---