From: Jim Meyering Date: Mon, 28 Aug 2000 14:55:18 +0000 (+0000) Subject: declare __fpending only if necessary X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=972f69daf801cbd547361438942aeb6de31e45bb;p=pspp 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