blob: accb5cebb6f75f36820da00529946f75317976e4 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001#ifndef AOS_AOS_STDINT_H_
2#define AOS_AOS_STDINT_H_
3
4#include <stdint.h>
5
6#ifdef __VXWORKS__
7typedef int64_t intmax_t;
8typedef uint64_t uintmax_t;
9#endif
10
11#endif
12