comparison src/termcap.c @ 5276:dd2976af8783

Add some missing #includes, termcap.c, hopefully fixing Adam Sjoegren's build. 2010-09-18 Aidan Kehoe <kehoea@parhasard.net> * termcap.c: Add a couple of missing includes here, which should fix builds that use this file. (I have no access to such builds, but Mats' buildbot shows output that indicates they fail at link time since DEVICE_BAUD_RATE and IS_DIRECTORY_SEP are available.)
author Aidan Kehoe <kehoea@parhasard.net>
date Sat, 18 Sep 2010 15:03:54 +0100
parents 16112448d484
children 308d34e9f07d
comparison
equal deleted inserted replaced
5275:5a9aa6c40c9b 5276:dd2976af8783
23 23
24 /* config.h may rename various library functions such as malloc. */ 24 /* config.h may rename various library functions such as malloc. */
25 #ifdef emacs 25 #ifdef emacs
26 #include <config.h> 26 #include <config.h>
27 #include "lisp.h" /* For encapsulated open, close, read */ 27 #include "lisp.h" /* For encapsulated open, close, read */
28 #include "device.h" /* For DEVICE_BAUD_RATE */ 28 #include "device.h"
29 #include "device-impl.h" /* For DEVICE_BAUD_RATE */
30 #include "sysfile.h"
31 #include "process.h"
29 #else /* not emacs */ 32 #else /* not emacs */
30 33
31 #include <stdlib.h> 34 #include <stdlib.h>
32 #include <string.h> 35 #include <string.h>
33 36