forked from Imagelibrary/rtems
* configure.ac: Rework stdint.h/inttypes.h support. Add RTEMS_USES_STDINT_H. Add RTEMS_USES_INTTYPES_H. Remove NEED_STDINT_H. Remove NEED_INTTYPES_H. Remove termios-flag detection. * libcsupport/Makefile.am: Install include/stdint.h and include/inttypes.h for NEWLIB only. * libcsupport/include/stdint.h: Rework; Now newlib specific. * libcsupport/src/termios.c: Make newlib specific. * include/rtems/stdint.h: Rework; Now wrapper to <stdint.h>.
36 lines
518 B
C
36 lines
518 B
C
/*
|
|
* stdint.h
|
|
*
|
|
* ISO C99 integer types
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __STDINT_H
|
|
#define __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
|