diff options
Diffstat (limited to 'term/term.h')
-rw-r--r-- | term/term.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/term/term.h b/term/term.h index c89e4425..db2be09c 100644 --- a/term/term.h +++ b/term/term.h @@ -135,11 +135,16 @@ uid_t term_group; mode_t term_mode; +/* XXX Including <sys/ioctl.h> or <hurd/ioctl_types.h> leads to "ECHO + undeclared" errors in munge.c or users.c. */ +struct winsize; + /* Functions a bottom half defines */ struct bottomhalf { enum term_bottom_type type; error_t (*init) (void); + error_t (*gwinsz) (struct winsize *size); error_t (*start_output) (void); error_t (*set_break) (void); error_t (*clear_break) (void); |