add a missing section header table index conversion
[tangerine.git] / compiler / clib / include / inttypes.h
bloba42423030125679c6eb8865684fe942635827bff
1 #ifndef _INTTYPES_H_
2 #define _INTTYPES_H_
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Standard fixed sized integral types.
9 */
11 #include <sys/_types.h>
12 #include <sys/cdefs.h>
13 #include <stdint.h>
16 TODO TODO TODO
18 #if defined __cplusplus && defined __STDC_FORMAT_MACROS
20 Macros for fprintf()
22 Signed:
23 PRId<N> PRIdLEAST<N> PRIdFAST<N> PRIdMAX PRIdPTR
24 PRIi<N> PRIiLEAST<N> PRIiFAST<N> PRIiMAX PRIiPTR
26 Unsigned:
27 PRIo<N> PRIoLEAST<N> PRIoFAST<N> PRIiMAX PRIiPTR
28 PRIu<N> PRIuLEAST<N> PRIuFAST<N> PRIiMAX PRIiPTR
29 PRIx<N> PRIxLEAST<N> PRIxFAST<N> PRIxMAX PRIxPTR
30 PRIX<N> PRIXLEAST<N> PRIXFAST<N> PRIXMAX PRIXPTR
32 Macros for fscanf()
33 SCNd<N> SCNdLEAST<N> SCNdFAST<N> SCNdMAX SCNdPTR
34 SCNi<N> SCNiLEAST<N> SCNiFAST<N> SCNiMAX SCNiPTR
36 SCNo<N> SCNoLEAST<N> SCNoFAST<N> SCNoMAX SCNoPTR
37 SCNu<N> SCNuLEAST<N> SCNuFAST<N> SCNuMAX SCNuPTR
38 SCNx<N> SCNxLEAST<N> SCNxFAST<N> SCNxMAX SCNxPTR
40 #endif
43 #define __need_wchar_t
44 #include <stddef.h>
46 __BEGIN_DECLS
48 /* NOTIMPL intmax_t strtoimax(const char * restrict nptr,
49 char ** restrict endptr, int base); */
50 /* NOTIMPL uintmax_t strtoumax(const char * restrict nptr,
51 char ** restrict endptr, int base); */
53 /* NOTIMPL intmax_t wcstoimax(const wchar_t * restrict nptr,
54 wchar_t ** restrict endptr, int base); */
55 /* NOTIMPL uintmax_t wcstoumax(const wchar_t * restrict nptr,
56 wchar_t ** restrict endptr, int base); */
58 __END_DECLS
60 #endif /* _INTTYPES_H_ */