summaryrefslogtreecommitdiff
path: root/src/emacs.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-03-31 13:39:03 -0700
committerDan Nicolaescu <dann@ics.uci.edu>2010-03-31 13:39:03 -0700
commit1d29df5994318178a5505946ec1c4c3c06a25c93 (patch)
tree015a9dfe5a40ab20b24a8eee34423cc3babe4a87 /src/emacs.c
parent1cd095c67cd41cf73cf5a382c261d16b9ec2e25e (diff)
downloademacs-1d29df5994318178a5505946ec1c4c3c06a25c93.tar.gz
Clean up BSD_SYSTEM use.
* xterm.c: * process.c: * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard for including <sys/ioctl.h>. * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this code is only used for MSDOS.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 60aa14e2b78..6327fd8a7d3 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -32,7 +32,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include <unistd.h>
#endif
-#ifdef BSD_SYSTEM
+#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif