(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
fail_always_inline2.c
       1  extern char *__realpath_alias (__const char *__restrict __name, char 
       2  *__restrict __resolved) __asm__ ("" "realpath") __attribute__ 
       3  ((__nothrow__)) __attribute__ ((__warn_unused_result__));
       4  
       5  extern __inline __attribute__ ((__always_inline__)) __attribute__ 
       6  ((__artificial__)) __attribute__ ((__warn_unused_result__)) char *
       7  __attribute__ ((__nothrow__)) realpath (__const char *__restrict __name, 
       8  char *__restrict __resolved)
       9  {
      10     return __realpath_alias (__name, __resolved);
      11  }
      12  
      13  char *
      14  realpath(path, resolved)
      15    const char *path;
      16    char *resolved;
      17  {
      18    return (((void *)0));
      19  }