Imported Upstream version 4.5.14
[platform/upstream/findutils.git] / find / finddata.c
1 /* finddata.c -- global data for "find".
2    Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000, 2003, 2004, 2005,
3    2007, 2010, 2011 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation, either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 /* config.h must be included first. */
20 #include <config.h>
21
22 /* system headers would go here, but we include none. */
23
24 /* gnulib headers. */
25 #include "save-cwd.h"
26
27 /* find headers. */
28 #include "defs.h"
29
30
31 struct options options;
32 struct state state;
33 struct saved_cwd *initial_wd = NULL;