[libc] Use __SIZE_TYPE__ instead of rt_size_t in minilibc.

This commit is contained in:
bernard 2014-08-03 14:30:31 +08:00
parent 5397e18c56
commit fccd0e6b83
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
#include <rtthread.h>
typedef long off_t;
typedef rt_size_t size_t;
typedef __SIZE_TYPE__ size_t;
typedef signed long ssize_t; /* Used for a count of bytes or an error indication. */
typedef rt_uint8_t u_char;