1 /*
2  * fstrcmp - fuzzy string compare library
3  * Copyright (C) 2009 Peter Miller
4  * Written by Peter Miller <pmiller@opensource.org.au>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or (at
9  * your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program. If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef LIB_AC_SYS_STAT_H
21 #define LIB_AC_SYS_STAT_H
22 
23 #include <lib/ac/sys/types.h>
24 
25 #ifdef HAVE_SYS_STAT_H
26 #include <sys/stat.h>
27 #endif
28 
29 #endif /* LIB_AC_SYS_STAT_H */
30