home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / unixlib / src / getwd.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  129b  |  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.