summaryrefslogtreecommitdiff
path: root/src/termcap.c
diff options
context:
space:
mode:
authorDavid J. MacKenzie <djm@gnu.org>1995-09-02 23:47:41 +0000
committerDavid J. MacKenzie <djm@gnu.org>1995-09-02 23:47:41 +0000
commit2a18a8dba57b89d1f753a5c9c8bdc9c86d70fdb4 (patch)
tree0ee2bcad36e3f669cdb45fbb7b3c2f734742c398 /src/termcap.c
parent2c1cce6c3ca00fcab2cd3b0c45345f6494de8ebc (diff)
downloademacs-2a18a8dba57b89d1f753a5c9c8bdc9c86d70fdb4.tar.gz
Don't assume that HAVE_CONFIG_H implies emacs.
Diffstat (limited to 'src/termcap.c')
-rw-r--r--src/termcap.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/termcap.c b/src/termcap.c
index 2a270c454eb..595fc425c18 100644
--- a/src/termcap.c
+++ b/src/termcap.c
@@ -17,8 +17,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Emacs config.h may rename various library functions such as malloc. */
#ifdef HAVE_CONFIG_H
-
#include <config.h>
+#endif
+
+#ifdef emacs
/* Get the O_* definitions for open et al. */
#include <sys/file.h>
@@ -26,7 +28,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <fcntl.h>
#endif
-#else /* not HAVE_CONFIG_H */
+#else /* not emacs */
#ifdef STDC_HEADERS
#include <stdlib.h>
@@ -49,7 +51,7 @@ char *realloc ();
#include <fcntl.h>
#endif
-#endif /* not HAVE_CONFIG_H */
+#endif /* not emacs */
#ifndef NULL
#define NULL (char *) 0