2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

PR 409:
	* include/stdint.h: Include rtems/stdint.h
This commit is contained in:
Ralf Corsepius
2003-05-27 16:33:01 +00:00
parent 58823ff6ad
commit fe661e4169
2 changed files with 6 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 409:
* include/stdint.h: Include rtems/stdint.h
2003-04-17 Thomas Doerfler <Thomas.Doerfler@imd-systems.de> 2003-04-17 Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
PR 399/rtems_misc PR 399/rtems_misc

View File

@@ -13,15 +13,7 @@
extern "C" { extern "C" {
#endif #endif
typedef signed char int8_t; #include <rtems/stdint.h>
typedef short int int16_t;
typedef int int32_t;
typedef long int int64_t;
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long int uint64_t;
#ifdef __cplusplus #ifdef __cplusplus
} }