From: Jim Meyering Date: Mon, 28 Aug 2000 14:55:18 +0000 (+0000) Subject: declare __fpending only if necessary X-Git-Tag: FILEUTILS-4_0z~77 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=3c5e612fce0d09e02eb82e42d34996cd6c0e33d0;p=thirdparty%2Fcoreutils.git declare __fpending only if necessary --- diff --git a/lib/__fpending.h b/lib/__fpending.h index 2130c90711..a59bc58d50 100644 --- a/lib/__fpending.h +++ b/lib/__fpending.h @@ -10,4 +10,9 @@ #include +#ifndef HAVE_DECL___FPENDING +"this configure-time declaration test was not run" +#endif +#if !HAVE_DECL___FPENDING size_t __fpending (FILE *); +#endif