(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr47372-1.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target fpic } */
       3  /* { dg-options "-O2 -fPIC -g" } */
       4  
       5  typedef struct FILE FILE;
       6  int _fwalk(int (*)(FILE *));
       7  int __sflush(FILE *);
       8  int
       9  fflush(FILE *fp)
      10  {
      11    return (_fwalk(__sflush));
      12  }