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

PR 409:
	* include/Makefile.am: Add rtems/stdint.h
	* include/rtems/stdint.h: New.
This commit is contained in:
Ralf Corsepius
2003-05-27 16:17:31 +00:00
parent acd7c408f4
commit f4e204cbfa
3 changed files with 43 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 409:
* include/Makefile.am: Add rtems/stdint.h
* include/rtems/stdint.h: New.
2003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 321:
+2 -1
View File
@@ -16,7 +16,8 @@ PREINSTALL_FILES = $(PROJECT_INCLUDE) \
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
include_rtemsdir = $(includedir)/rtems
include_rtems_HEADERS = rtems/bspIo.h rtems/userenv.h rtems/fs.h
include_rtems_HEADERS = rtems/bspIo.h rtems/userenv.h rtems/fs.h \
rtems/stdint.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/%)
+35
View File
@@ -0,0 +1,35 @@
/*
* rtems/stdint.h
*
* ISO C99 integer types
*
* $Id$
*/
#ifndef __rtems_stdint_h
#define __rtems_stdint_h
#ifdef __cplusplus
extern "C" {
#endif
#include <rtems/score/types.h>
/*
* map RTEMS internal types onto C99 types
*/
typedef signed8 int8_t;
typedef signed16 int16_t;
typedef signed32 int32_t;
typedef signed64 int64_t;
typedef unsigned8 uint8_t;
typedef unsigned16 uint16_t;
typedef unsigned32 uint32_t;
typedef unsigned64 uint64_t;
#ifdef __cplusplus
}
#endif
#endif