home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libnix-0.8-src.lha / libnix-0.8 / sources / nix / extra / getwd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  104 b   |  8 lines

  1. #include <unistd.h>
  2. #include <sys/param.h>
  3.  
  4. char *getwd(char *buf)
  5. {
  6.   return getcwd(buf,MAXPATHLEN);
  7. }
  8.