Include errno.h.

(init_buffer) [HAVE_GETCWD]: Fix error message for getcwd failure.
This commit is contained in:
Richard M. Stallman 1997-08-27 20:01:05 +00:00
parent 759ae8118b
commit 9dde47f579

View file

@ -23,6 +23,9 @@ Boston, MA 02111-1307, USA. */
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <errno.h>
extern int errno;
#ifndef MAXPATHLEN
/* in 4.1, param.h fails to define this. */
@ -3708,7 +3711,7 @@ init_buffer ()
strcpy (buf, pwd);
#ifdef HAVE_GETCWD
else if (getcwd (buf, MAXPATHLEN+1) == 0)
fatal ("`getcwd' failed: %s\n", buf);
fatal ("`getcwd' failed: %s\n", strerror (errno));
#else
else if (getwd (buf) == 0)
fatal ("`getwd' failed: %s\n", buf);