home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / LIBSRC.ZOO / libsrc / local / lstat.c < prev    next >
Text File  |  1992-03-14  |  137b  |  9 lines

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3.  
  4. int lstat (const char *path, struct stat *buf)
  5. {
  6.    return (stat (path, buf));
  7. }
  8.  
  9.