src.hhvn.uk > rc > file > stat.h

Byron Rakitzis' rc(1) port, with a few modifications
Log | Files | Refs | README | LICENSE

stat.h (98B)


      1 #include <sys/stat.h>
      2 
      3 #if HAVE_LSTAT
      4 #else
      5 #define lstat(name, buf) (stat((name), (buf)))
      6 #endif