Deleted Added
sdiff udiff text old ( 186261 ) new ( 186334 )
full compact
1/* $NetBSD: mkfs.c,v 1.20 2004/06/24 22:30:13 lukem Exp $ */
2
3/*
4 * Copyright (c) 2002 Networks Associates Technology, Inc.
5 * All rights reserved.
6 *
7 * This software was developed for the FreeBSD Project by Marshall
8 * Kirk McKusick and Network Associates Laboratories, the Security

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

34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 */
40
41#include <sys/cdefs.h>
42#ifndef lint
43#if 0
44static char sccsid[] = "@(#)mkfs.c 8.11 (Berkeley) 5/3/95";
45#else
46#ifdef __RCSID
47__RCSID("$NetBSD: mkfs.c,v 1.20 2004/06/24 22:30:13 lukem Exp $");
48#endif
49#endif
50#endif /* not lint */
51
52#include <sys/param.h>
53#include <sys/time.h>
54#include <sys/resource.h>
55
56#include <stdio.h>
57#include <stdlib.h>
58#include <string.h>

--- 782 unchanged lines hidden ---