From 5dd5b5ac4358e793ad1e41f3b95e006db6f033a1 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Wed, 21 Apr 2010 20:35:22 +0000 Subject: [PATCH] Adjusted typdefs to Cygwin 1.7 (now not compatible anymore with Cygwin 1.5). --- platform/win32/contiki-conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/win32/contiki-conf.h b/platform/win32/contiki-conf.h index 9344c26b7..0e6f10c1e 100644 --- a/platform/win32/contiki-conf.h +++ b/platform/win32/contiki-conf.h @@ -38,8 +38,8 @@ typedef signed char int8_t; typedef unsigned char uint8_t; typedef signed short int16_t; typedef unsigned short uint16_t; -typedef signed long int32_t; -typedef unsigned long uint32_t; +typedef signed int int32_t; +typedef unsigned int uint32_t; /* These names are deprecated, use C99 names. */ typedef unsigned char u8_t;