Deleted Added
full compact
disklabel.c (22993) disklabel.c (23668)
1/*
2 * Copyright (c) 1983, 1987, 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

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

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)disklabel.c 8.2 (Berkeley) 5/3/95";
37#endif
38static const char rcsid[] =
1/*
2 * Copyright (c) 1983, 1987, 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

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

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)disklabel.c 8.2 (Berkeley) 5/3/95";
37#endif
38static const char rcsid[] =
39 "$Id$";
39 "$Id: disklabel.c,v 1.5 1997/02/22 14:58:01 peter Exp $";
40#endif /* not lint */
41
42#include <sys/param.h>
43#define DKTYPENAMES
44#include <sys/disklabel.h>
40#endif /* not lint */
41
42#include <sys/param.h>
43#define DKTYPENAMES
44#include <sys/disklabel.h>
45#include <ufs/ufs/dinode.h>
45#include <ufs/ffs/fs.h>
46
47#include <errno.h>
48#include <fcntl.h>
49#include <stdio.h>
50#include <stdlib.h>
51#include <string.h>
52#include <unistd.h>

--- 121 unchanged lines hidden ---
46#include <ufs/ffs/fs.h>
47
48#include <errno.h>
49#include <fcntl.h>
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
53#include <unistd.h>

--- 121 unchanged lines hidden ---