]> git.eshelyaron.com Git - emacs.git/commitdiff
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
authorDave Love <fx@gnu.org>
Tue, 20 Jun 2000 18:19:03 +0000 (18:19 +0000)
committerDave Love <fx@gnu.org>
Tue, 20 Jun 2000 18:19:03 +0000 (18:19 +0000)
src/termcap.c

index c447ce8b4b07f7d82e90e9a82c687207e701a7ec..472005f13934a5de373632133d1025f601694c21 100644 (file)
@@ -23,11 +23,15 @@ Boston, MA 02111-1307, USA.  */
 
 #ifdef emacs
 
+#include <lisp.h>              /* xmalloc is here */
 /* Get the O_* definitions for open et al.  */
 #include <sys/file.h>
-#ifdef USG5
+#ifdef HAVE_FCNTL_H
 #include <fcntl.h>
 #endif
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 
 #else /* not emacs */
 
@@ -313,7 +317,7 @@ tputs (str, nlines, outfun)
   register int speed;
 
 #ifdef emacs
-  extern baud_rate;
+  extern int baud_rate;
   speed = baud_rate;
   /* For quite high speeds, convert to the smaller
      units to avoid overflow.  */