diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-28 14:55:18 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-28 14:55:18 +0000 |
commit | 3c5e612fce0d09e02eb82e42d34996cd6c0e33d0 (patch) | |
tree | 178a3b0da40727f539e900232635f458813b3c80 /lib | |
parent | 92452ed0a0c66cc20e0f806532af96f8ff6bd9da (diff) | |
download | coreutils-3c5e612fce0d09e02eb82e42d34996cd6c0e33d0.tar.xz |
declare __fpending only if necessary
Diffstat (limited to 'lib')
-rw-r--r-- | lib/__fpending.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/__fpending.h b/lib/__fpending.h index 2130c9071..a59bc58d5 100644 --- a/lib/__fpending.h +++ b/lib/__fpending.h @@ -10,4 +10,9 @@ #include <sys/types.h> +#ifndef HAVE_DECL___FPENDING +"this configure-time declaration test was not run" +#endif +#if !HAVE_DECL___FPENDING size_t __fpending (FILE *); +#endif |