diff options
author | 2001-06-26 06:32:46 +0000 | |
---|---|---|
committer | 2001-06-26 06:32:46 +0000 | |
commit | 08d1172d67ef632962039f0f9b05c55ed93331bf (patch) | |
tree | c18845a72fb322f4f7a85a8fcaea0f32044feb71 /usr.bin/ssh/session.h | |
parent | Appease gcc by not using void pointers in arithmetic operations; art@ ok (diff) | |
download | wireguard-openbsd-08d1172d67ef632962039f0f9b05c55ed93331bf.tar.xz wireguard-openbsd-08d1172d67ef632962039f0f9b05c55ed93331bf.zip |
prototype pedant. not very creative...
- () -> (void)
- no variable names
Diffstat (limited to 'usr.bin/ssh/session.h')
-rw-r--r-- | usr.bin/ssh/session.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/ssh/session.h b/usr.bin/ssh/session.h index bda1e50b593..9ed83585ca2 100644 --- a/usr.bin/ssh/session.h +++ b/usr.bin/ssh/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.7 2001/06/25 08:25:39 markus Exp $ */ +/* $OpenBSD: session.h,v 1.8 2001/06/26 06:33:01 itojun Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -26,11 +26,11 @@ #ifndef SESSION_H #define SESSION_H -void do_authenticated(Authctxt *ac); +void do_authenticated(Authctxt *); -int session_open(int id); -void session_input_channel_req(int id, void *arg); -void session_close_by_pid(pid_t pid, int status); -void session_close_by_channel(int id, void *arg); +int session_open(int); +void session_input_channel_req(int, void *); +void session_close_by_pid(pid_t, int); +void session_close_by_channel(int, void *); #endif |