f58af2f147c453c2f92e02082b3dd62e705ba6ff
[gnulib.git] / lib / wchar_.h
1 /* A substitute for ISO C99 <wchar.h>, for platforms that have issues.
2
3    Copyright (C) 2007 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 2, or (at your option)
8    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, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 /* Written by Eric Blake.  */
20
21 /*
22  * ISO C 99 <wchar.h> for platforms that have issues.
23  * <http://www.opengroup.org/susv3xbd/wchar.h.html>
24  *
25  * For now, this just ensures proper prerequisite inclusion order.
26  */
27
28 #if @HAVE_INCLUDE_NEXT@
29 # include <stdio.h>
30 # include_next <wchar.h>
31 #endif
32
33 #ifndef _GL_WCHAR_H
34 #define _GL_WCHAR_H
35
36 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
37    <wchar.h>.
38    BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
39    included before <wchar.h>.  */
40 #include <stddef.h>
41 #include <stdio.h>
42 #include <time.h>
43
44 /* Include the original <wchar.h>.  */
45 #if ! @HAVE_INCLUDE_NEXT@
46 # include @ABSOLUTE_WCHAR_H@
47 #endif
48
49 #endif /* _GL_WCHAR_H */