forked from Imagelibrary/rtems
* configure.ac: Remove -ansi (Cygwin breaks with it). * libcsupport/include/stdint.h: Use sys/_stdint.h to setup fixed size types. * libcsupport/include/sys/_inttypes.h: Add SCN*N macros.
23 lines
200 B
C
23 lines
200 B
C
/*
|
|
* 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
|