diff options
author | Damien Miller <djm@mindrot.org> | 2006-03-26 00:06:14 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-03-26 00:06:14 +1100 |
commit | ed3986a00492c5a7f1f284f724dc4dd4063ea785 (patch) | |
tree | 564695a7a2c2a852ff7f5f31d8d1096f484a46d5 /sshpty.h | |
parent | 91a2d9746a0934777e9a43f3671db1daa309c1ab (diff) |
- deraadt@cvs.openbsd.org 2006/03/20 18:14:02
[monitor_wrap.h sshpty.h]
sprinkle u_int throughout pty subsystem, ok markus
Diffstat (limited to 'sshpty.h')
-rw-r--r-- | sshpty.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshpty.h,v 1.6 2006/02/07 01:42:00 stevesk Exp $ */ | 1 | /* $OpenBSD: sshpty.h,v 1.7 2006/03/20 18:14:02 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -23,10 +23,10 @@ struct termios get_saved_tio(void); | |||
23 | void leave_raw_mode(void); | 23 | void leave_raw_mode(void); |
24 | void enter_raw_mode(void); | 24 | void enter_raw_mode(void); |
25 | 25 | ||
26 | int pty_allocate(int *, int *, char *, int); | 26 | int pty_allocate(int *, int *, char *, size_t); |
27 | void pty_release(const char *); | 27 | void pty_release(const char *); |
28 | void pty_make_controlling_tty(int *, const char *); | 28 | void pty_make_controlling_tty(int *, const char *); |
29 | void pty_change_window_size(int, int, int, int, int); | 29 | void pty_change_window_size(int, u_int, u_int, u_int, u_int); |
30 | void pty_setowner(struct passwd *, const char *); | 30 | void pty_setowner(struct passwd *, const char *); |
31 | 31 | ||
32 | #endif /* SSHPTY_H */ | 32 | #endif /* SSHPTY_H */ |