home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / unistd / getwd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-01  |  240 b   |  13 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <unistd.h>
  4. #include <limits.h>
  5.  
  6. char *
  7. getwd(char *buffer)
  8. {
  9.   if (buffer == 0)
  10.     return 0;
  11.   return getcwd(buffer, PATH_MAX);
  12. }
  13.