diff options
author | Miles Bader <miles@gnu.org> | 1995-12-21 16:58:07 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-12-21 16:58:07 +0000 |
commit | 8fc4a3687bb7b89da9b80ee5c62a8eaad5e24a69 (patch) | |
tree | aa6a767a22971980dcc42b5cac5d2feb849405eb | |
parent | 68d84e512d5bc81bc33ecb0612eae86edb4389e0 (diff) |
(ptyopen, nptyperopens, pktnostop, output_stopped): Initialize to 0.
-rw-r--r-- | term/ptyio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/term/ptyio.c b/term/ptyio.c index cd8f1261..c8b9f534 100644 --- a/term/ptyio.c +++ b/term/ptyio.c @@ -46,13 +46,13 @@ static int user_ioctl_mode = 0; /* Byte to send to user in packet mode or user ioctl mode. */ static char control_byte = 0; -static int output_stopped; +static int output_stopped = 0; -static int pktnostop; +static int pktnostop = 0; -static int ptyopen; +static int ptyopen = 0; -static int nptyperopens; +static int nptyperopens = 0; static void ptyio_init (void) __attribute__ ((constructor)); |