(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr42667.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-w" } */
       3  
       4  extern int strlen(const char *);
       5  void WriteTextDots(int len);
       6  
       7  void OnDisplay(char * string)
       8  {
       9    if (!string)
      10      string = "(none)";
      11    WriteTextDots(strlen(string));
      12  }
      13