Deleted Added
full compact
main.c (200420) main.c (200462)
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

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

42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
46#endif
47#endif /* not lint */
48
49#include <sys/cdefs.h>
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

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

42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
46#endif
47#endif /* not lint */
48
49#include <sys/cdefs.h>
50__FBSDID("$FreeBSD: head/usr.bin/find/main.c 200420 2009-12-11 23:35:38Z delphij $");
50__FBSDID("$FreeBSD: head/usr.bin/find/main.c 200462 2009-12-13 03:14:06Z delphij $");
51
52#include <sys/types.h>
53#include <sys/stat.h>
54
55#include <err.h>
51
52#include <sys/types.h>
53#include <sys/stat.h>
54
55#include <err.h>
56#include <errno.h>
56#include <fcntl.h>
57#include <fts.h>
58#include <locale.h>
59#include <regex.h>
60#include <stdio.h>
61#include <stdlib.h>
62#include <time.h>
63#include <unistd.h>

--- 106 unchanged lines hidden ---
57#include <fcntl.h>
58#include <fts.h>
59#include <locale.h>
60#include <regex.h>
61#include <stdio.h>
62#include <stdlib.h>
63#include <time.h>
64#include <unistd.h>

--- 106 unchanged lines hidden ---