62e66577b2
* inclhack.def (hpux11_uint32_c): Remove. (hpux_long_double): Disable on hpux11.3*. (hpux_long_double_2): New. (hpux_c99_intptr): New. (hpux_c99_inttypes): New. (hpux_c99_inttypes2): New. (hpux_stdint_least): New. (hpux_stdint_fast): New. (hpux_inttype_int_least8_t): New. (hpux_inttype_int8_t): New. * fixincl.x: Regenerate. * tests/base/sys/_inttypes.h: New. * tests/base/inttypes.h: Update. * tests/base/stdlib.h: Update. * tests/base/stdint.h: Update. From-SVN: r146899
99 lines
2.4 KiB
C
99 lines
2.4 KiB
C
/* DO NOT EDIT THIS FILE.
|
|
|
|
It has been auto-edited by fixincludes from:
|
|
|
|
"fixinc/tests/inc/stdint.h"
|
|
|
|
This had to be done to correct non-standard usages in the
|
|
original, manufacturer supplied header file. */
|
|
|
|
|
|
|
|
#if defined( GLIBC_STDINT_CHECK )
|
|
/* This file is part of the GNU C Library. */
|
|
# define UINT8_C(c) c
|
|
# define UINT16_C(c) c
|
|
#endif /* GLIBC_STDINT_CHECK */
|
|
|
|
|
|
#if defined( HPUX_C99_INTPTR_CHECK )
|
|
#define PTRDIFF_MAX __PTRDIFF_MAX__
|
|
#define PTRDIFF_MIN (-PTRDIFF_MAX - 1)
|
|
#define INTPTR_MAX (2147483647l)
|
|
#define INTPTR_MIN (-INTPTR_MAX - 1)
|
|
#define UINTPTR_MAX (4294967295ul)
|
|
#define SIZE_MAX __SIZE_MAX__
|
|
|
|
#endif /* HPUX_C99_INTPTR_CHECK */
|
|
|
|
|
|
#if defined( HPUX_C99_INTTYPES2_CHECK )
|
|
#define INT8_C(__c) (__c)
|
|
#define UINT8_C(c) __UINT8_C(c)
|
|
#define INT16_C(__c) (__c)
|
|
#define UINT16_C(c) __UINT16_C(c)
|
|
|
|
#endif /* HPUX_C99_INTTYPES2_CHECK */
|
|
|
|
|
|
#if defined( HPUX_STDINT_LEAST_CHECK )
|
|
#ifdef __LP64__
|
|
# define UINT_LEAST64_MAX ULONG_MAX
|
|
#else
|
|
# define UINT_LEAST64_MAX ULLONG_MAX
|
|
#endif
|
|
|
|
|
|
#endif /* HPUX_STDINT_LEAST_CHECK */
|
|
|
|
|
|
#if defined( HPUX_STDINT_FAST_CHECK )
|
|
#ifdef __LP64__
|
|
# define UINT_FAST64_MAX ULONG_MAX
|
|
#else
|
|
# define UINT_FAST64_MAX ULLONG_MAX
|
|
#endif
|
|
|
|
|
|
#endif /* HPUX_STDINT_FAST_CHECK */
|
|
|
|
|
|
#if defined( IRIX_STDINT_C99_CHECK )
|
|
#if 0
|
|
#error This header file is to be used only for c99 mode compilations
|
|
#else
|
|
#endif /* IRIX_STDINT_C99_CHECK */
|
|
|
|
|
|
#if defined( NEWLIB_STDINT_1_CHECK )
|
|
/* @todo - Add support for wint_t types. */
|
|
#define INT32_MIN (-INT32_MAX - 1)
|
|
#define INT32_MAX __INT32_MAX__
|
|
#define UINT32_MAX __UINT32_MAX__
|
|
#define INT_LEAST32_MIN (-INT_LEAST32_MAX - 1)
|
|
#define INT_LEAST32_MAX __INT_LEAST32_MAX__
|
|
#define UINT_LEAST32_MAX __UINT_LEAST32_MAX__
|
|
#define INT_FAST8_MIN (-INT_FAST8_MAX - 1)
|
|
#define INT_FAST8_MAX __INT_FAST8_MAX__
|
|
#define UINT_FAST8_MAX __UINT_FAST8_MAX__
|
|
#define SIZE_MAX __SIZE_MAX__
|
|
#define PTRDIFF_MIN (-PTRDIFF_MAX - 1)
|
|
#define PTRDIFF_MAX __PTRDIFF_MAX__
|
|
#define UINT8_C(c) __UINT8_C(c)
|
|
#define UINT16_C(c) __UINT16_C(c)
|
|
#endif /* NEWLIB_STDINT_1_CHECK */
|
|
|
|
|
|
#if defined( NEWLIB_STDINT_2_CHECK )
|
|
/* @todo - Add support for wint_t types. */
|
|
#define INTMAX_MAX __INTMAX_MAX__
|
|
#define INTMAX_MIN (-INTMAX_MAX - 1)
|
|
#define UINTMAX_MAX __UINTMAX_MAX__
|
|
#define WCHAR_MAX __WCHAR_MAX__
|
|
#define WCHAR_MIN __WCHAR_MIN__
|
|
#define WINT_MAX __WINT_MAX__
|
|
#define WINT_MIN __WINT_MIN__
|
|
|
|
/** Macros for minimum-width integer constant expressions */
|
|
#endif /* NEWLIB_STDINT_2_CHECK */
|