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
This commit is contained in:
patacongo
2011-04-06 17:48:56 +00:00
parent 85981d6db6
commit f37cd2e046
13 changed files with 67 additions and 67 deletions
+5 -5
View File
@@ -64,22 +64,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