Added signed 32 bit data type.

This commit is contained in:
oliverschmidt 2007-05-12 20:58:12 +00:00
parent 813b27d234
commit 4fd1e3ece0
9 changed files with 42 additions and 12 deletions

View file

@ -116,9 +116,10 @@ typedef unsigned long clock_time_t;
typedef unsigned char u8_t;
typedef unsigned char u8_t;
typedef unsigned short u16_t;
typedef unsigned long u32_t;
typedef unsigned long u32_t;
typedef long s32_t;
typedef unsigned short uip_stats_t;
#define UIP_CONF_MAX_CONNECTIONS 40