home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / sas_unix_lib.lha / unix / src / getwd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-15  |  129 b   |  9 lines

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