mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-24 00:18:49 +08:00
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:
@@ -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:
|
||||
|
||||
@@ -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)/%)
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user