Deleted Added
full compact
fsck.c (93102) fsck.c (95258)
1/* $NetBSD: fsck.c,v 1.21 1999/04/22 04:20:53 abs Exp $ */
2
3/*
4 * Copyright (c) 1996 Christos Zoulas. All rights reserved.
5 * Copyright (c) 1980, 1989, 1993, 1994
6 * The Regents of the University of California. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

34 * SUCH DAMAGE.
35 *
36 * From: @(#)mount.c 8.19 (Berkeley) 4/19/94
37 * From: $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp
38 * $NetBSD: fsck.c,v 1.21 1999/04/22 04:20:53 abs Exp $
39 */
40
41#include <sys/cdefs.h>
1/* $NetBSD: fsck.c,v 1.21 1999/04/22 04:20:53 abs Exp $ */
2
3/*
4 * Copyright (c) 1996 Christos Zoulas. All rights reserved.
5 * Copyright (c) 1980, 1989, 1993, 1994
6 * The Regents of the University of California. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

34 * SUCH DAMAGE.
35 *
36 * From: @(#)mount.c 8.19 (Berkeley) 4/19/94
37 * From: $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp
38 * $NetBSD: fsck.c,v 1.21 1999/04/22 04:20:53 abs Exp $
39 */
40
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/sbin/fsck/fsck.c 93102 2002-03-24 15:06:48Z markm $");
42__FBSDID("$FreeBSD: head/sbin/fsck/fsck.c 95258 2002-04-22 13:44:47Z des $");
43
44#include <sys/param.h>
45#include <sys/mount.h>
46#include <sys/queue.h>
47#include <sys/wait.h>
48#define FSTYPENAMES
49#define DKTYPENAMES
50#include <sys/disklabel.h>

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

577
578
579static void
580usage(void)
581{
582 static const char common[] =
583 "[-BFdpvlyn] [-T fstype:fsoptions] [-t fstype]";
584
43
44#include <sys/param.h>
45#include <sys/mount.h>
46#include <sys/queue.h>
47#include <sys/wait.h>
48#define FSTYPENAMES
49#define DKTYPENAMES
50#include <sys/disklabel.h>

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

577
578
579static void
580usage(void)
581{
582 static const char common[] =
583 "[-BFdpvlyn] [-T fstype:fsoptions] [-t fstype]";
584
585 (void)fprintf(stderr, "Usage: %s %s [special|node]...\n",
585 (void)fprintf(stderr, "usage: %s %s [special|node]...\n",
586 getprogname(), common);
587 exit(1);
588}
586 getprogname(), common);
587 exit(1);
588}