You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
364 B
20 lines
364 B
#ifndef STDINT_H
|
|
#define STDINT_H
|
|
|
|
#ifdef __INT32_TYPE__
|
|
typedef unsigned __INT32_TYPE__ uint32_t;
|
|
#endif
|
|
|
|
#ifdef __INT64_TYPE__
|
|
typedef unsigned __INT64_TYPE__ uint64_t;
|
|
#endif
|
|
|
|
#ifdef __INTPTR_TYPE__
|
|
typedef __INTPTR_TYPE__ intptr_t;
|
|
typedef unsigned __INTPTR_TYPE__ uintptr_t;
|
|
#else
|
|
#error Every target should have __INTPTR_TYPE__
|
|
#endif
|
|
|
|
#endif /* STDINT_H */
|