diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-06-26 06:33:08 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-06-26 06:33:08 +0000 |
commit | 38ff9051ba504cfdd1c2e9f02b248b2b71c2e9bf (patch) | |
tree | daf4bce5a7f7822fa8f958aabecbc26db6fa46ee /usr.bin/ssh/serverloop.h | |
parent | d4aba5f28304432a57f9be423624f773dd99cc52 (diff) |
prototype pedant. not very creative...
- () -> (void)
- no variable names
Diffstat (limited to 'usr.bin/ssh/serverloop.h')
-rw-r--r-- | usr.bin/ssh/serverloop.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/serverloop.h b/usr.bin/ssh/serverloop.h index 652c1d9f8e5..9c2c2ccb99c 100644 --- a/usr.bin/ssh/serverloop.h +++ b/usr.bin/ssh/serverloop.h @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.h,v 1.2 2001/01/29 01:58:17 niklas Exp $ */ +/* $OpenBSD: serverloop.h,v 1.3 2001/06/26 06:33:00 itojun Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -18,5 +18,5 @@ * (of the child program), and reads from stdout and stderr (of the child * program). */ -void server_loop(pid_t pid, int fdin, int fdout, int fderr); +void server_loop(pid_t, int, int, int); void server_loop2(void); |