glob: Fix C++ compilation.
[gnulib.git] / lib / glob.in.h
1 /* glob.h -- Find a path matching a pattern.
2
3    Copyright (C) 2005-2007, 2009-2010 Free Software Foundation, Inc.
4
5    Written by Derek Price <derek@ximbiot.com> & Paul Eggert <eggert@CS.UCLA.EDU>
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software Foundation,
19    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
20
21 #ifndef _GL_GLOB_H
22 #define _GL_GLOB_H
23
24 #if @HAVE_SYS_CDEFS_H@
25 # include <sys/cdefs.h>
26 #endif
27
28 #include <stddef.h>
29
30 /* On some systems, such as AIX 5.1, <sys/stat.h> does a "#define stat stat64".
31    Make sure this definition is seen before glob-libc.h defines types that
32    rely on 'struct stat'.  */
33 #include <sys/stat.h>
34
35 #ifndef __BEGIN_DECLS
36 # ifdef __cplusplus
37 #  define __BEGIN_DECLS  extern "C" {
38 #  define __END_DECLS    }
39 # else
40 #  define __BEGIN_DECLS
41 #  define __END_DECLS
42 # endif
43 #endif
44 #ifndef __THROW
45 # define __THROW
46 #endif
47
48 /* The definition of _GL_ARG_NONNULL is copied here.  */
49
50 #ifndef __size_t
51 # define __size_t       size_t
52 #endif
53 #ifndef __USE_GNU
54 # define __USE_GNU    1
55 #endif
56
57
58 #define glob rpl_glob
59 #define globfree rpl_globfree
60 #define glob_pattern_p rpl_glob_pattern_p
61
62 #define __GLOB_GNULIB 1
63
64 /* Now the standard GNU C Library header should work.  */
65 #include "glob-libc.h"
66
67 #endif /* _GL_GLOB_H */