Go to the documentation of this file.
15 #ifndef OTF_INTTYPES_UNIX_H
16 #define OTF_INTTYPES_UNIX_H
18 #define OTF_HAVE_STDINT_H 1
19 #define OTF_HAVE_INTTYPES_H 1
20 #define OTF_SIZEOF_LONG 8
23 # undef OTF_HAVE_STDINT_H
24 # define OTF_HAVE_STDINT_H 0
29 #elif OTF_HAVE_INTTYPES_H
30 # include <inttypes.h>
33 typedef signed char int8_t;
34 typedef signed short int int16_t;
35 typedef signed int int32_t;
36 # if OTF_SIZEOF_LONG == 8
37 typedef signed long int int64_t;
39 typedef signed long long int int64_t;
42 typedef unsigned char uint8_t;
43 typedef unsigned short int uint16_t;
44 typedef unsigned int uint32_t;
45 # if OTF_SIZEOF_LONG == 8
46 typedef unsigned long int uint64_t;
48 typedef unsigned long long int uint64_t;
54 # define OTF_UINT64_MAX UINT64_MAX
56 # define OTF_UINT64_MAX (uint64_t)-1