aboutsummaryrefslogtreecommitdiffstats
path: root/indep.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-11-16 22:02:00 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-11-16 22:02:00 +0000
commit3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9 (patch)
tree43a618cb2507489be74cf3b52a18d4be5110fe58 /indep.c
parenttgetstr("Km", &pt) cannot be used to detect is_xterm (diff)
downloadw3m-3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9.tar.gz
w3m-3a391ef6c247a0eee78ce93cf3c3ab5617dc06d9.zip
follow autoconf conventions, #include cleanups
Diffstat (limited to '')
-rw-r--r--indep.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/indep.c b/indep.c
index b4cdc46..5a859f5 100644
--- a/indep.c
+++ b/indep.c
@@ -1,13 +1,10 @@
-/* $Id: indep.c,v 1.3 2001/11/15 00:32:13 a-ito Exp $ */
+/* $Id: indep.c,v 1.4 2001/11/16 22:02:00 ukai Exp $ */
#include "fm.h"
#include <stdio.h>
#include <pwd.h>
#include <sys/param.h>
#include <sys/types.h>
#include <stdlib.h>
-#ifdef __EMX__
-#include <strings.h> /* for bcopy() */
-#endif /* __EMX__ */
#include "indep.h"
#include "Str.h"
#include "gc.h"
@@ -50,14 +47,14 @@ char *
currentdir()
{
char *path;
-#ifdef GETCWD
+#ifdef HAVE_GETCWD
path = NewAtom_N(char, MAXPATHLEN);
getcwd(path, MAXPATHLEN);
-#else /* not GETCWD */
-#ifdef GETWD
+#else /* not HAVE_GETCWD */
+#ifdef HAVE_GETWD
path = NewAtom_N(char, 1024);
getwd(path);
-#else /* not GETWD */
+#else /* not HAVE_GETWD */
FILE *f;
char *p;
path = NewAtom_N(char, 1024);
@@ -69,8 +66,8 @@ currentdir()
*p = '\0';
break;
}
-#endif /* not GETWD */
-#endif /* not GETCWD */
+#endif /* not HAVE_GETWD */
+#endif /* not HAVE_GETCWD */
return path;
}