mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-31 11:37:10 +08:00
25 lines
337 B
C
25 lines
337 B
C
/**
|
|
* @file rtems/stdint.h
|
|
*
|
|
* Wrapper to <stdint.h>, switching to <inttypes.h> on systems
|
|
* only having <inttypes.h> (e.g. Solaris-5.7).
|
|
*/
|
|
|
|
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _RTEMS_STDINT_H
|
|
#define _RTEMS_STDINT_H
|
|
|
|
#include <rtems/score/cpuopts.h>
|
|
|
|
#if RTEMS_USES_STDINT_H
|
|
#include <stdint.h>
|
|
|
|
#else
|
|
#include <inttypes.h>
|
|
#endif
|
|
|
|
#endif
|