forked from Imagelibrary/rtems
* include/sys/_stdint.h: Various changes.
Add *leastN_t types. Add INTN_{MIN|MAX} macros.
Add doxygen preamble.
* include/sys/_inttypes.h: Add doxygen preamble.
Reflect changes above.
* libcsupport/include/stdint.h: Add doxygen preamble.
* libcsupport/include/inttypes.h: Add doxygen preamble.
* configure.ac: Add doxygen preamble to cpuopts.h.
25 lines
212 B
C
25 lines
212 B
C
/**
|
|
* @file stdint.h
|
|
*/
|
|
|
|
/*
|
|
* ISO C99 integer types
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __STDINT_H
|
|
#define __STDINT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <sys/_stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|