| Index: gcc/fixincludes/tests/base/inttypes.h
|
| diff --git a/gcc/fixincludes/tests/base/inttypes.h b/gcc/fixincludes/tests/base/inttypes.h
|
| index 06d7ebd5ce364d4d900d8f3d015f6e092c0c9c1d..3f556856a41f914d94766d57fad3208133ac3e3b 100644
|
| --- a/gcc/fixincludes/tests/base/inttypes.h
|
| +++ b/gcc/fixincludes/tests/base/inttypes.h
|
| @@ -9,7 +9,10 @@
|
|
|
|
|
|
|
| -#if defined( HPUX11_UINT32_C_CHECK )
|
| -#define CONCAT_U__(__c) __CONCAT__(__c,u)
|
| -#define UINT32_C(__c) __CONCAT__(__c,ul)
|
| -#endif /* HPUX11_UINT32_C_CHECK */
|
| +#if defined( HPUX_C99_INTTYPES_CHECK )
|
| +#define UINT8_C(__c) (__c)
|
| +#define UINT16_C(__c) (__c)
|
| +#define INT32_C(__c) (__c)
|
| +#define UINT32_C(__c) __CONCAT__(__c,u)
|
| +
|
| +#endif /* HPUX_C99_INTTYPES_CHECK */
|
|
|