diff options
author | phk <phk@FreeBSD.org> | 1995-10-22 14:51:39 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-10-22 14:51:39 +0000 |
commit | 107ef321d3cc17d146d3ea2ef8e38b5964096061 (patch) | |
tree | ea1d3fd2095891edf59c3a99e95f068aa3dcb632 /lib/libc/rpc/clnt_raw.c | |
parent | 073a1e809a6b1c9546fce476af76b5ab77e46ce6 (diff) | |
download | FreeBSD-src-107ef321d3cc17d146d3ea2ef8e38b5964096061.zip FreeBSD-src-107ef321d3cc17d146d3ea2ef8e38b5964096061.tar.gz |
Well, cvs commit core'ed on me, I belive I have got all the locks out,
but a commit mail got lost, it's the same as for this commit:
lib/libc/gen confstr.c crypt.c disklabel.c fstab.c getcap.c
getgrent.c getgrouplist.c getpass.c getpwent.c
initgroups.c nlist.c psignal.c pwcache.c setmode.c
sleep.c sysconf.c sysctl.c syslog.c usleep.c
lib/libc/locale none.c read_runemagi.c setlocale.c
lib/libc/net gethostbydns.c getnetbydns.c getnetbynis.c
lib/libc/nls msgcat.c
lib/libc/quad Makefile.inc
lib/libc/regex engine.c regcomp.c regerror.c
Minor cleanup, mostly unused vars and missing #includes.
Limit the number of quad functions we pull in for 'i386'.
I still belive the quad stuff should go back into gcc.
Add compile-time warnings about crypt functions.
Diffstat (limited to 'lib/libc/rpc/clnt_raw.c')
-rw-r--r-- | lib/libc/rpc/clnt_raw.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/rpc/clnt_raw.c b/lib/libc/rpc/clnt_raw.c index 0f86b3e..c3a17a4 100644 --- a/lib/libc/rpc/clnt_raw.c +++ b/lib/libc/rpc/clnt_raw.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)clnt_raw.c 1.22 87/08/11 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)clnt_raw.c 2.2 88/08/01 4.0 RPCSRC";*/ -static char *rcsid = "$Id: clnt_raw.c,v 1.1 1994/08/07 18:35:45 wollman Exp $"; +static char *rcsid = "$Id: clnt_raw.c,v 1.2 1995/05/30 05:41:16 rgrimes Exp $"; #endif /* @@ -45,6 +45,7 @@ static char *rcsid = "$Id: clnt_raw.c,v 1.1 1994/08/07 18:35:45 wollman Exp $"; */ #include <rpc/rpc.h> +#include <stdlib.h> #define MCALL_MSG_SIZE 24 |