summaryrefslogtreecommitdiff
path: root/sshpty.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-26 00:06:14 +1100
committerDamien Miller <djm@mindrot.org>2006-03-26 00:06:14 +1100
commited3986a00492c5a7f1f284f724dc4dd4063ea785 (patch)
tree564695a7a2c2a852ff7f5f31d8d1096f484a46d5 /sshpty.h
parent91a2d9746a0934777e9a43f3671db1daa309c1ab (diff)
downloadopenssh-git-ed3986a00492c5a7f1f284f724dc4dd4063ea785.tar.gz
- 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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sshpty.h b/sshpty.h
index a7de7370..9a39e4a1 100644
--- a/sshpty.h
+++ b/sshpty.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshpty.h,v 1.6 2006/02/07 01:42:00 stevesk Exp $ */
+/* $OpenBSD: sshpty.h,v 1.7 2006/03/20 18:14:02 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -23,10 +23,10 @@ struct termios get_saved_tio(void);
void leave_raw_mode(void);
void enter_raw_mode(void);
-int pty_allocate(int *, int *, char *, int);
+int pty_allocate(int *, int *, char *, size_t);
void pty_release(const char *);
void pty_make_controlling_tty(int *, const char *);
-void pty_change_window_size(int, int, int, int, int);
+void pty_change_window_size(int, u_int, u_int, u_int, u_int);
void pty_setowner(struct passwd *, const char *);
#endif /* SSHPTY_H */