From dcea5f0360725d2c25b61eefe9db7b2474b26dd6 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 6 Apr 2011 17:48:56 +0000 Subject: Remove user_initialize(); Make sure all integer types are signed that need to be git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3474 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/arch/sim/include/types.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'nuttx/arch/sim') diff --git a/nuttx/arch/sim/include/types.h b/nuttx/arch/sim/include/types.h index 214fbb91b..5b58264e6 100644 --- a/nuttx/arch/sim/include/types.h +++ b/nuttx/arch/sim/include/types.h @@ -63,22 +63,22 @@ * files */ -typedef char _int8_t; +typedef signed char _int8_t; typedef unsigned char _uint8_t; -typedef short _int16_t; +typedef signed short _int16_t; typedef unsigned short _uint16_t; -typedef int _int32_t; +typedef signed int _int32_t; typedef unsigned int _uint32_t; -typedef long long _int64_t; +typedef signed long long _int64_t; typedef unsigned long long _uint64_t; #define __INT64_DEFINED /* A pointer is 4 bytes */ -typedef unsigned int _intptr_t; +typedef signed int _intptr_t; typedef unsigned int _uintptr_t; /* This is the size of the interrupt state save returned by -- cgit v1.2.3