home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / lib / gen / getwd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-20  |  96 b   |  7 lines  |  [TEXT/CPED]

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