Deleted Added
full compact
clnt_simple.c (74462) clnt_simple.c (75094)
1/* $NetBSD: clnt_simple.c,v 1.21 2000/07/06 03:10:34 christos Exp $ */
2
3/*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or

--- 21 unchanged lines hidden (view full) ---

30 */
31/*
32 * Copyright (c) 1986-1991 by Sun Microsystems Inc.
33 */
34
35#if defined(LIBC_SCCS) && !defined(lint)
36/*static char *sccsid = "from: @(#)clnt_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";*/
37/*static char *sccsid = "from: @(#)clnt_simple.c 2.2 88/08/01 4.0 RPCSRC";*/
1/* $NetBSD: clnt_simple.c,v 1.21 2000/07/06 03:10:34 christos Exp $ */
2
3/*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or

--- 21 unchanged lines hidden (view full) ---

30 */
31/*
32 * Copyright (c) 1986-1991 by Sun Microsystems Inc.
33 */
34
35#if defined(LIBC_SCCS) && !defined(lint)
36/*static char *sccsid = "from: @(#)clnt_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";*/
37/*static char *sccsid = "from: @(#)clnt_simple.c 2.2 88/08/01 4.0 RPCSRC";*/
38static char *rcsid = "$FreeBSD: head/lib/libc/rpc/clnt_simple.c 74462 2001-03-19 12:50:13Z alfred $";
38static char *rcsid = "$FreeBSD: head/lib/libc/rpc/clnt_simple.c 75094 2001-04-02 21:41:44Z iedowse $";
39#endif
40
41/*
42 * clnt_simple.c
43 * Simplified front end to client rpc.
44 *
45 */
46
39#endif
40
41/*
42 * clnt_simple.c
43 * Simplified front end to client rpc.
44 *
45 */
46
47#include "reentrant.h"
48#include "namespace.h"
47#include "namespace.h"
48#include "reentrant.h"
49#include <sys/param.h>
50#include <stdio.h>
51#include <errno.h>
52#include <rpc/rpc.h>
53#include <string.h>
54#include <stdlib.h>
55#include <fcntl.h>
56#include <unistd.h>

--- 139 unchanged lines hidden ---
49#include <sys/param.h>
50#include <stdio.h>
51#include <errno.h>
52#include <rpc/rpc.h>
53#include <string.h>
54#include <stdlib.h>
55#include <fcntl.h>
56#include <unistd.h>

--- 139 unchanged lines hidden ---