diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-09-01 02:39:07 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-09-01 02:39:07 +0000 |
commit | 17c90228482320aa70427c19b6bf5942070cd36c (patch) | |
tree | 04569b49370752e2750b9ce8c8dff7d9d18324e3 /lib/libc/rpc/crypt_client.c | |
parent | e033b0162b5aef7866417775e766a72ec11a5425 (diff) | |
download | FreeBSD-src-17c90228482320aa70427c19b6bf5942070cd36c.zip FreeBSD-src-17c90228482320aa70427c19b6bf5942070cd36c.tar.gz |
Use ANSI C prototypes.
Eliminates gcc 4.9 warnings.
Diffstat (limited to 'lib/libc/rpc/crypt_client.c')
-rw-r--r-- | lib/libc/rpc/crypt_client.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/rpc/crypt_client.c b/lib/libc/rpc/crypt_client.c index 5290021..b7f0d1ff 100644 --- a/lib/libc/rpc/crypt_client.c +++ b/lib/libc/rpc/crypt_client.c @@ -43,10 +43,7 @@ __FBSDID("$FreeBSD$"); #include "un-namespace.h" int -_des_crypt_call(buf, len, dparms) - char *buf; - int len; - struct desparams *dparms; +_des_crypt_call(char *buf, int len, struct desparams *dparms) { CLIENT *clnt; desresp *result_1; |