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 Lesser 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  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program. If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef LIB_AC_STDIO_H
21 #define LIB_AC_STDIO_H
22 
23 #include <lib/config.h>
24 
25 #include <stdio.h>
26 
27 /*
28  * Ancient pre-ANSI-C systems (e.g. SunOS 4.1.2) fail to define this.
29  */
30 #ifndef SEEK_SET
31 #define SEEK_SET 0
32 #endif
33 
34 #ifndef L_tmpnam
35 #define L_tmpnam 100
36 #endif
37 
38 #define sprintf sprintf_is_dangerous__use_snprintf_instead@
39 #define vsprintf sprintf_is_dangerous__use_vsnprintf_instead@
40 
41 #endif /* LIB_AC_STDIO_H */
42