aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-06-02 18:42:13 +0000
committerDave Love2003-06-02 18:42:13 +0000
commit3c29b03191b307a10d8a535504c85d267d636fc5 (patch)
tree67adb1109a6d14a027cfed9320daf2fb0dbe2400 /src
parent0a7d603959ec145ec3637d1a0c21079e2c54ce17 (diff)
downloademacs-3c29b03191b307a10d8a535504c85d267d636fc5.tar.gz
emacs-3c29b03191b307a10d8a535504c85d267d636fc5.zip
Use HAVE_FCNTL_H, not _POSIX_VERSION.
Diffstat (limited to 'src')
-rw-r--r--src/termcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/termcap.c b/src/termcap.c
index 8918f06d244..fa8d0ced0aa 100644
--- a/src/termcap.c
+++ b/src/termcap.c
@@ -53,7 +53,7 @@ char *realloc ();
53#ifdef HAVE_UNISTD_H 53#ifdef HAVE_UNISTD_H
54#include <unistd.h> 54#include <unistd.h>
55#endif 55#endif
56#ifdef _POSIX_VERSION 56#ifdef HAVE_FCNTL_H
57#include <fcntl.h> 57#include <fcntl.h>
58#endif 58#endif
59 59