1 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2 /* hack.ioctl.c - version 1.0.2 */
3 /* $FreeBSD: src/games/hack/hack.ioctl.c,v 1.2 1999/09/12 07:01:23 marcel Exp $
4 $DragonFly: src/games/hack/hack.ioctl.c,v 1.4 2006/08/21 19:45:32 pavalos Exp $
6 This cannot be part of hack.tty.c (as it was earlier) since on some
7 systems (e.g. MUNIX) the include files <termio.h> and <sgtty.h>
8 define the same constants, and the C preprocessor complains. */
12 struct ltchars ltchars
, ltchars0
;
14 #include <termio.h> /* also includes part of <sgtty.h> */
22 ioctl(fileno(stdin
), (int) TIOCGLTC
, (char *) <chars
);
23 ioctl(fileno(stdin
), (int) TIOCSLTC
, (char *) <chars0
);
25 ioctl(fileno(stdin
), (int) TCGETA
, &termio
);
33 ioctl(fileno(stdin
), (int) TIOCSLTC
, (char *) <chars
);
35 ioctl(fileno(stdin
), (int) TCSETA
, &termio
);
39 #ifdef SUSPEND /* implies BSD */
45 if(signal(SIGTSTP
, SIG_IGN
) == SIG_DFL
) {
47 signal(SIGTSTP
, SIG_DFL
);
53 pline("I don't think your shell has job control.");
56 pline("Sorry, it seems we have no SIGTSTP here. Try ! or S.");