]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/Include/inttypes.h
Fix GCC build errors.
[mirror_edk2.git] / StdLib / Include / inttypes.h
CommitLineData
2aa62f2b 1/* $NetBSD: inttypes.h,v 1.4 2005/04/18 19:47:51 kleink Exp $ */\r
2\r
3/*-\r
4 * Copyright (c) 2001 The NetBSD Foundation, Inc.\r
5 * All rights reserved.\r
6 *\r
7 * This code is derived from software contributed to The NetBSD Foundation\r
8 * by Klaus Klein.\r
9 *\r
10 * Redistribution and use in source and binary forms, with or without\r
11 * modification, are permitted provided that the following conditions\r
12 * are met:\r
13 * 1. Redistributions of source code must retain the above copyright\r
14 * notice, this list of conditions and the following disclaimer.\r
15 * 2. Redistributions in binary form must reproduce the above copyright\r
16 * notice, this list of conditions and the following disclaimer in the\r
17 * documentation and/or other materials provided with the distribution.\r
18 * 3. All advertising materials mentioning features or use of this software\r
19 * must display the following acknowledgement:\r
20 * This product includes software developed by the NetBSD\r
21 * Foundation, Inc. and its contributors.\r
22 * 4. Neither the name of The NetBSD Foundation nor the names of its\r
23 * contributors may be used to endorse or promote products derived\r
24 * from this software without specific prior written permission.\r
25 *\r
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\r
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\r
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
36 * POSSIBILITY OF SUCH DAMAGE.\r
37 */\r
38#ifndef _INTTYPES_H_\r
39#define _INTTYPES_H_\r
40\r
41#include <sys/EfiCdefs.h>\r
42//#include <sys/inttypes.h>\r
43#include <sys/stdint.h>\r
44#include <machine/ansi.h>\r
45\r
46#ifdef _EFI_WCHAR_T\r
47 typedef _EFI_WCHAR_T wchar_t;\r
48 #undef _EFI_WCHAR_T\r
49 #undef _BSD_WCHAR_T_\r
50#endif\r
51\r
52__BEGIN_DECLS\r
53intmax_t strtoimax(const char * __restrict,\r
54 char ** __restrict, int);\r
55uintmax_t strtoumax(const char * __restrict,\r
56 char ** __restrict, int);\r
57intmax_t wcstoimax(const wchar_t * __restrict,\r
58 wchar_t ** __restrict, int);\r
59uintmax_t wcstoumax(const wchar_t * __restrict,\r
60 wchar_t ** __restrict, int);\r
61__END_DECLS\r
62\r
63#endif /* !_INTTYPES_H_ */\r