From 09afd0f282d390204a231b79ff3b26d36a03b126 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Wed, 24 Apr 1996 23:04:33 +0000 Subject: Include . --- term/term.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'term/term.h') diff --git a/term/term.h b/term/term.h index fbeabf00..0c469809 100644 --- a/term/term.h +++ b/term/term.h @@ -23,6 +23,7 @@ #include #include #include +#include #undef MDMBUF #undef ECHO @@ -174,7 +175,7 @@ clear_queue (struct queue *q) } /* Should be below, but inlines need it. */ -void call_asyncs (); +void call_asyncs (int dir); /* Return the next character off Q; leave the quoting bit on. */ extern inline quoted_char @@ -194,7 +195,7 @@ dequeue_quote (struct queue *q) { condition_broadcast (q->wait); if (q == outputq) - call_asyncs (); + call_asyncs (O_WRITE); } return *q->cs++; } @@ -223,7 +224,7 @@ enqueue_internal (struct queue **qp, quoted_char c) { condition_broadcast (q->wait); if (q == inputq) - call_asyncs (); + call_asyncs (O_READ); } if (!q->susp && (qsize (q) > q->hiwat)) -- cgit v1.2.3