blob: 36a842ed529ec1f31849ecec862e750a532ecea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stddef.h>
#include <stdio.h>
#if HAVE_STDIO_EXT_H
# include <stdio_ext.h>
#endif
#ifndef HAVE_DECL___FPENDING
"this configure-time declaration test was not run"
#endif
#if !HAVE_DECL___FPENDING
size_t __fpending (FILE *);
#endif
|