(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20100609-1.c
       1  extern unsigned long int strtoul (__const char *__restrict __nptr,       char **__restrict __endptr, int __base);
       2  int find_reloads (int i, char *p)
       3  {
       4    int c;
       5    while ((c = *p++))
       6      return strtoul (p - 1, &p, 10); 
       7    return 0;
       8  }