summaryrefslogtreecommitdiff
path: root/src/systty.h
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-06-07 20:02:41 -0700
committerDan Nicolaescu <dann@ics.uci.edu>2010-06-07 20:02:41 -0700
commita99ebb40a7fb95b9a50dc9df26e61955f3c061dd (patch)
tree71425e4f0d13bf9e52dace6173571aef53c86e93 /src/systty.h
parent78a7a068403db34cfc96a4051a2798883a059688 (diff)
Remove INCLUDED_FCNTL.
* xterm.c (INCLUDED_FCNTL): * callproc.c (INCLUDED_FCNTL): * alloc.c (INCLUDED_FCNTL): * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore. (emacs_get_tty, emacs_set_tty): Declare unconditionally.
Diffstat (limited to 'src/systty.h')
-rw-r--r--src/systty.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/systty.h b/src/systty.h
index fcc6cf81e5..39feef9c3d 100644
--- a/src/systty.h
+++ b/src/systty.h
@@ -27,17 +27,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#ifndef NO_TERMIO
#include <termio.h>
#endif /* not NO_TERMIO */
-#ifndef INCLUDED_FCNTL
-#define INCLUDED_FCNTL
#include <fcntl.h>
-#endif
#else /* not HAVE_TERMIO */
#ifdef HAVE_TERMIOS
#ifndef NO_TERMIO
#include <termio.h>
#endif
#include <termios.h>
-#define INCLUDED_FCNTL
#include <fcntl.h>
#else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
#ifndef DOS_NT
@@ -247,10 +243,8 @@ struct emacs_tty {
expression, so we moved them out to their own functions in sysdep.c. */
#define EMACS_GET_TTY(fd, p) (emacs_get_tty ((fd), (p)))
#define EMACS_SET_TTY(fd, p, waitp) (emacs_set_tty ((fd), (p), (waitp)))
-#ifdef P_ /* Unfortunately this file is sometimes included before lisp.h */
-extern int emacs_get_tty P_ ((int, struct emacs_tty *));
-extern int emacs_set_tty P_ ((int, struct emacs_tty *, int));
-#endif
+extern int emacs_get_tty (int, struct emacs_tty *);
+extern int emacs_set_tty (int, struct emacs_tty *, int);
/* Define EMACS_TTY_TABS_OK. */