diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-09-22 19:32:37 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-09-22 19:32:37 +0000 |
commit | c6420e42043cdcba29a01d4964fc786cbacc3a3c (patch) | |
tree | df0c92f06d976a4978131324c51e08e1907fee73 | |
parent | 186dd077bcca90d6bdca98c5cdedbfdb42b20b4f (diff) |
(output_psize): Remove variable declaration.
(write_character, init_users): New declarations.
-rw-r--r-- | term/term.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/term/term.h b/term/term.h index a55f7027..e28d8c11 100644 --- a/term/term.h +++ b/term/term.h @@ -62,9 +62,6 @@ long termflags; #define NO_OWNER 0x00000200 /* there is no foreground_id */ #define ICKY_ASYNC 0x00000400 /* some user has set O_ASYNC */ -/* PHYSICAL position of the terminal cursor */ -int output_psize; - /* Global lock */ struct mutex global_lock; @@ -249,6 +246,8 @@ error_t drain_output (); void output_character (int); void copy_rawq (void); void rescan_inputq (void); +void write_character (int); +void init_users (void); /* exported by the devio interface */ |