Commit 01f235bc 01f235bcc9d3799c129d9a10de64a10f6f6b00b6 by Sam Roberts

Not all systems have <sys/fcntl.h>, changed to use HAVE_FCNTL_H.

1 parent 99f11b70
......@@ -22,7 +22,12 @@
# include <termios.h>
#endif
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#else
# include <sys/fcntl.h>
#endif
typedef struct _node {
/* for the msglist expander */
......