Deleted Added
full compact
misc.c (121300) misc.c (124387)
1/*-
2 * Copyright (c) 1991, 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

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

28 */
29
30#if 0
31#ifndef lint
32static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93";
33#endif /*not lint */
34#endif
35#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1991, 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

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

28 */
29
30#if 0
31#ifndef lint
32static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93";
33#endif /*not lint */
34#endif
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/usr.sbin/mtree/misc.c 121300 2003-10-21 08:27:05Z phk $");
36__FBSDID("$FreeBSD: head/usr.sbin/mtree/misc.c 124387 2004-01-11 19:25:56Z phk $");
37
38#include <sys/types.h>
39#include <sys/stat.h>
40#include <err.h>
41#include <fts.h>
42#include <stdio.h>
43#include <unistd.h>
44#include "mtree.h"
45#include "extern.h"
46
37
38#include <sys/types.h>
39#include <sys/stat.h>
40#include <err.h>
41#include <fts.h>
42#include <stdio.h>
43#include <unistd.h>
44#include "mtree.h"
45#include "extern.h"
46
47extern int lineno;
48
49typedef struct _key {
50 const char *name; /* key name */
51 u_int val; /* value */
52
53#define NEEDVALUE 0x01
54 u_int flags;
55} KEY;
56

--- 66 unchanged lines hidden ---
47typedef struct _key {
48 const char *name; /* key name */
49 u_int val; /* value */
50
51#define NEEDVALUE 0x01
52 u_int flags;
53} KEY;
54

--- 66 unchanged lines hidden ---