195b7b453SJohn Marino /* Declare __fpending. 295b7b453SJohn Marino 3*09d4459fSDaniel Fojt Copyright (C) 2000, 2003, 2005-2006, 2009-2020 Free Software Foundation, 495b7b453SJohn Marino Inc. 595b7b453SJohn Marino 695b7b453SJohn Marino This program is free software: you can redistribute it and/or modify 795b7b453SJohn Marino it under the terms of the GNU General Public License as published by 895b7b453SJohn Marino the Free Software Foundation; either version 3 of the License, or 995b7b453SJohn Marino (at your option) any later version. 1095b7b453SJohn Marino 1195b7b453SJohn Marino This program is distributed in the hope that it will be useful, 1295b7b453SJohn Marino but WITHOUT ANY WARRANTY; without even the implied warranty of 1395b7b453SJohn Marino MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1495b7b453SJohn Marino GNU General Public License for more details. 1595b7b453SJohn Marino 1695b7b453SJohn Marino You should have received a copy of the GNU General Public License 17*09d4459fSDaniel Fojt along with this program. If not, see <https://www.gnu.org/licenses/>. 1895b7b453SJohn Marino 1995b7b453SJohn Marino Written by Jim Meyering. */ 2095b7b453SJohn Marino 2195b7b453SJohn Marino #include <stddef.h> 2295b7b453SJohn Marino #include <stdio.h> 2395b7b453SJohn Marino #if HAVE_STDIO_EXT_H 2495b7b453SJohn Marino # include <stdio_ext.h> 2595b7b453SJohn Marino #endif 26680a9cb8SJohn Marino 27680a9cb8SJohn Marino #if !HAVE_DECL___FPENDING 28680a9cb8SJohn Marino size_t __fpending (FILE *) _GL_ATTRIBUTE_PURE; 2995b7b453SJohn Marino #endif 30