off_t changed to signed to stay the same as POSIX

On many other tool chains, like TI's new MSG430-GCC, the typedef will be conflict.
This commit is contained in:
myrfy001 2015-11-17 14:30:04 +08:00
parent a161dc2959
commit 5a440dd003
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@
/* Types for clocks and uip_stats */
typedef unsigned short uip_stats_t;
typedef unsigned long clock_time_t;
typedef unsigned long off_t;
typedef long off_t;
/* the low-level radio driver */
#define NETSTACK_CONF_RADIO cc2420_driver