#ifndef XGETCWD_H
#define XGETCWD_H
/*
  xgetcwd - implimentation of limitless getcwd
  By Nick Rusnov <nick@grawk.net>
  This is in the public domain. 
  Do what thou wilt and it shall be the whole of the law.
*/

/* xgetcwd returns a char * to an allocated string containing the cwd returned
   by getcwd or 0 on failure (errno contains the error). */
char *xgetcwd(void); 

#endif /* XGETCWD_H */

