Deleted Added
full compact
main.c (92786) main.c (93604)
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Cimarron D. Taylor of the University of California, Berkeley.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

38char copyright[] =
39"@(#) Copyright (c) 1990, 1993, 1994\n\
40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Cimarron D. Taylor of the University of California, Berkeley.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

38char copyright[] =
39"@(#) Copyright (c) 1990, 1993, 1994\n\
40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
46#else
47static const char rcsid[] =
48 "$FreeBSD: head/usr.bin/find/main.c 92786 2002-03-20 10:32:05Z markm $";
49#endif
50#endif /* not lint */
46#endif
47#endif /* not lint */
48#include <sys/cdefs.h>
49__FBSDID("$FreeBSD: head/usr.bin/find/main.c 93604 2002-04-01 22:56:56Z obrien $");
51
52#include <sys/types.h>
53#include <sys/stat.h>
54
55#include <err.h>
56#include <errno.h>
57#include <fcntl.h>
58#include <fts.h>

--- 113 unchanged lines hidden ---
50
51#include <sys/types.h>
52#include <sys/stat.h>
53
54#include <err.h>
55#include <errno.h>
56#include <fcntl.h>
57#include <fts.h>

--- 113 unchanged lines hidden ---