forked from Imagelibrary/rtems
23 lines
202 B
C
23 lines
202 B
C
/*
|
|
* stdint.h
|
|
*
|
|
* ISO C99 integer types
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __STDINT_H
|
|
#define __STDINT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <rtems/stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|