Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
343bc11b0ac5260c6f0401680e3bbfbdeb9a9e78
/
.
/
aos
/
aos_stdint.h
blob: accb5cebb6f75f36820da00529946f75317976e4 [
file
] [
log
] [
blame
]
brians
343bc11
2013-02-10 01:53:46 +0000
[
diff
] [
blame^
]
1
#ifndef
AOS_AOS_STDINT_H_
2
#define
AOS_AOS_STDINT_H_
3
4
#include
<stdint.h>
5
6
#ifdef
__VXWORKS__
7
typedef
int64_t
intmax_t
;
8
typedef
uint64_t
uintmax_t
;
9
#endif
10
11
#endif
12