home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / posix / unistd / fpathcon.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-01  |  221 b   |  12 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <errno.h>
  3. #include <unistd.h>
  4. #include <limits.h>
  5.  
  6. /* ARGSUSED */
  7. long
  8. fpathconf(int fildes, int name)
  9. {
  10.   return pathconf("/", name);
  11. }
  12.