home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / v6 / access.c next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  115 b   |  10 lines

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3.  
  4. access(name, mode)
  5. {
  6.     struct stat foo;
  7.  
  8.     return(stat(name, &foo));
  9. }
  10.