diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-03-31 13:39:03 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-03-31 13:39:03 -0700 |
commit | 1d29df5994318178a5505946ec1c4c3c06a25c93 (patch) | |
tree | 015a9dfe5a40ab20b24a8eee34423cc3babe4a87 /src/emacs.c | |
parent | 1cd095c67cd41cf73cf5a382c261d16b9ec2e25e (diff) | |
download | emacs-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.c | 2 |
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 |