2 dnl Copyright (C) 2007, 2009-2017 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_FUNC_FPURGE],
9 AC_REQUIRE([gl_STDIO_H_DEFAULTS])
10 AC_CHECK_FUNCS_ONCE([fpurge])
11 AC_CHECK_FUNCS_ONCE([__fpurge])
12 AC_CHECK_DECLS([fpurge], , , [[#include <stdio.h>]])
13 if test "x$ac_cv_func_fpurge" = xyes; then
15 # Detect BSD bug. Only cygwin 1.7 is known to be immune.
16 AC_CACHE_CHECK([whether fpurge works], [gl_cv_func_fpurge_works],
21 [FILE *f = fopen ("conftest.txt", "w+");
24 if (fputc ('a', f) != 'a')
25 { fclose (f); return 2; }
28 { fclose (f); return 3; }
30 { fclose (f); return 4; }
32 { fclose (f); return 5; }
33 if (putc ('b', f) != 'b')
34 { fclose (f); return 6; }
37 if ((f = fopen ("conftest.txt", "r")) == NULL)
40 { fclose (f); return 9; }
42 { fclose (f); return 10; }
44 { fclose (f); return 11; }
47 if (remove ("conftest.txt") != 0)
51 [gl_cv_func_fpurge_works=yes], [gl_cv_func_fpurge_works=no],
52 [gl_cv_func_fpurge_works='guessing no'])])
53 if test "x$gl_cv_func_fpurge_works" != xyes; then
59 if test "x$ac_cv_have_decl_fpurge" = xno; then