From cb236290e267f17d5f81a18d742b81f1b74b05a2 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 8 Nov 1996 17:51:52 +0000 Subject: Prototypes everywhere. svn path=/trunk/; revision=515 --- socket.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'socket.c') diff --git a/socket.c b/socket.c index ea0b5919..f21cf1fa 100644 --- a/socket.c +++ b/socket.c @@ -34,9 +34,7 @@ #endif #endif -FILE *Socket(host, clientPort) -char *host; -int clientPort; +FILE *Socket(char *host, int clientPort) { int sock; unsigned long inaddr; @@ -116,10 +114,7 @@ va_dcl { * */ -int SockWrite(buf,len,sockfp) -char *buf; -int len; -FILE *sockfp; +int SockWrite(char *buf, int len, FILE *sockfp) { int n, wrlen = 0; @@ -135,10 +130,7 @@ FILE *sockfp; return wrlen; } -int SockGets(buf, len, sockfp) -char *buf; -int len; -FILE *sockfp; +int SockGets(char *buf, int len, FILE *sockfp) { int rdlen = 0; -- cgit v1.2.3