summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sshpty.h
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2006-03-20 18:14:02 +0000
committerderaadt <deraadt@openbsd.org>2006-03-20 18:14:02 +0000
commit39b7de2da600432479e8bb33cfda38e86c7f59a7 (patch)
tree60f0172c7c669551b3f6a9bc6cd95624138b391f /usr.bin/ssh/sshpty.h
parentmake `rcs -a' use cvs_strsplit() for easiness; OK joris@. (diff)
downloadwireguard-openbsd-39b7de2da600432479e8bb33cfda38e86c7f59a7.tar.xz
wireguard-openbsd-39b7de2da600432479e8bb33cfda38e86c7f59a7.zip
sprinkle u_int throughout pty subsystem, ok markus
Diffstat (limited to 'usr.bin/ssh/sshpty.h')
-rw-r--r--usr.bin/ssh/sshpty.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshpty.h b/usr.bin/ssh/sshpty.h
index a7de7370081..9a39e4a1399 100644
--- a/usr.bin/ssh/sshpty.h
+++ b/usr.bin/ssh/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 */