Deleted Added
full compact
ffs.c (214921) ffs.c (217769)
1/* $NetBSD: ffs.c,v 1.44 2009/04/28 22:49:26 joerg Exp $ */
2
3/*
4 * Copyright (c) 2001 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Luke Mewburn for Wasabi Systems, Inc.
8 *

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

61 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 * SUCH DAMAGE.
64 *
65 * @(#)ffs_alloc.c 8.19 (Berkeley) 7/13/95
66 */
67
68#include <sys/cdefs.h>
1/* $NetBSD: ffs.c,v 1.44 2009/04/28 22:49:26 joerg Exp $ */
2
3/*
4 * Copyright (c) 2001 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Luke Mewburn for Wasabi Systems, Inc.
8 *

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

61 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 * SUCH DAMAGE.
64 *
65 * @(#)ffs_alloc.c 8.19 (Berkeley) 7/13/95
66 */
67
68#include <sys/cdefs.h>
69__FBSDID("$FreeBSD: head/usr.sbin/makefs/ffs.c 214921 2010-11-07 16:05:04Z cognet $");
69__FBSDID("$FreeBSD: head/usr.sbin/makefs/ffs.c 217769 2011-01-24 06:17:05Z mckusick $");
70
71#include <sys/param.h>
72
73#include <sys/mount.h>
74
75#include <assert.h>
76#include <errno.h>
77#include <fcntl.h>
78#include <stdarg.h>
79#include <stdint.h>
80#include <stdio.h>
81#include <stdlib.h>
82#include <string.h>
70
71#include <sys/param.h>
72
73#include <sys/mount.h>
74
75#include <assert.h>
76#include <errno.h>
77#include <fcntl.h>
78#include <stdarg.h>
79#include <stdint.h>
80#include <stdio.h>
81#include <stdlib.h>
82#include <string.h>
83#include <time.h>
83#include <unistd.h>
84
85#include "makefs.h"
86#include "ffs.h"
87
88#if HAVE_STRUCT_STATVFS_F_IOSIZE && HAVE_FSTATVFS
89#include <sys/statvfs.h>
90#endif

--- 1051 unchanged lines hidden ---
84#include <unistd.h>
85
86#include "makefs.h"
87#include "ffs.h"
88
89#if HAVE_STRUCT_STATVFS_F_IOSIZE && HAVE_FSTATVFS
90#include <sys/statvfs.h>
91#endif

--- 1051 unchanged lines hidden ---