Deleted Added
full compact
ccdconfig.c (36628) ccdconfig.c (39228)
1/* $NetBSD: ccdconfig.c,v 1.2.2.1 1995/11/11 02:43:35 thorpej Exp $ */
2
3/*
4 * Copyright (c) 1995 Jason R. Thorpe.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#ifndef lint
36static const char rcsid[] =
1/* $NetBSD: ccdconfig.c,v 1.2.2.1 1995/11/11 02:43:35 thorpej Exp $ */
2
3/*
4 * Copyright (c) 1995 Jason R. Thorpe.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#ifndef lint
36static const char rcsid[] =
37 "$Id$";
37 "$Id: ccdconfig.c,v 1.9 1998/06/04 06:41:26 charnier Exp $";
38#endif /* not lint */
39
40#include <sys/param.h>
41#include <sys/disklabel.h>
42#include <sys/device.h>
43#include <sys/disk.h>
44#include <sys/stat.h>
45#include <ctype.h>
46#include <err.h>
47#include <errno.h>
48#include <fcntl.h>
49#include <kvm.h>
50#include <limits.h>
51#include <stdio.h>
52#include <stdlib.h>
53#include <string.h>
54#include <unistd.h>
55
38#endif /* not lint */
39
40#include <sys/param.h>
41#include <sys/disklabel.h>
42#include <sys/device.h>
43#include <sys/disk.h>
44#include <sys/stat.h>
45#include <ctype.h>
46#include <err.h>
47#include <errno.h>
48#include <fcntl.h>
49#include <kvm.h>
50#include <limits.h>
51#include <stdio.h>
52#include <stdlib.h>
53#include <string.h>
54#include <unistd.h>
55
56#include <sys/devicestat.h>
56#include <sys/ccdvar.h>
57
58#include "pathnames.h"
59
60static int lineno = 0;
61static int verbose = 0;
62static char *ccdconf = _PATH_CCDCONF;
63

--- 660 unchanged lines hidden ---
57#include <sys/ccdvar.h>
58
59#include "pathnames.h"
60
61static int lineno = 0;
62static int verbose = 0;
63static char *ccdconf = _PATH_CCDCONF;
64

--- 660 unchanged lines hidden ---