diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-05 19:25:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-05 19:25:08 +0000 |
commit | ca9bd30c262ed788486c1d367ad40550e5d806c2 (patch) | |
tree | daf86037f4b4d34e91c6f147e287fb26694df103 /libc/inet | |
parent | 9281d180d13057917f618c35ef7433d2e4d4dd86 (diff) |
Many bugfixes, header cleanups, etc. Added abort and glob.
It is getting closer...
-Erik
Diffstat (limited to 'libc/inet')
-rw-r--r-- | libc/inet/Makefile | 1 | ||||
-rw-r--r-- | libc/inet/rpc/svc_tcp.c | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/libc/inet/Makefile b/libc/inet/Makefile index 14afc1763..b73a5499e 100644 --- a/libc/inet/Makefile +++ b/libc/inet/Makefile @@ -22,7 +22,6 @@ gethostbyaddr.o OBJ=$(AOBJ) $(ROBJ) all: $(LIBC) - @$(RM) $(OBJ) $(LIBC): $(LIBC)($(OBJ)) diff --git a/libc/inet/rpc/svc_tcp.c b/libc/inet/rpc/svc_tcp.c index 2f859476b..837e70c82 100644 --- a/libc/inet/rpc/svc_tcp.c +++ b/libc/inet/rpc/svc_tcp.c @@ -41,13 +41,11 @@ static char sccsid[] = "@(#)svc_tcp.c 1.21 87/08/11 Copyr 1984 Sun Micro"; * and a record/tcp stream. */ +#include <stdlib.h> #include <stdio.h> #include <rpc/rpc.h> #include <sys/socket.h> #include <errno.h> -/*#ifndef linux*/ -extern bool_t abort(); -/*#endif*/ extern errno; /* |