Deleted Added
full compact
getrpcent.c (296133) getrpcent.c (298226)
1/* $NetBSD: getrpcent.c,v 1.17 2000/01/22 22:19:17 mycroft Exp $ */
2
3/*-
4 * Copyright (c) 2009, Sun Microsystems, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:

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

27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#if defined(LIBC_SCCS) && !defined(lint)
32static char *sccsid = "@(#)getrpcent.c 1.14 91/03/11 Copyr 1984 Sun Micro";
33#endif
34#include <sys/cdefs.h>
1/* $NetBSD: getrpcent.c,v 1.17 2000/01/22 22:19:17 mycroft Exp $ */
2
3/*-
4 * Copyright (c) 2009, Sun Microsystems, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:

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

27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#if defined(LIBC_SCCS) && !defined(lint)
32static char *sccsid = "@(#)getrpcent.c 1.14 91/03/11 Copyr 1984 Sun Micro";
33#endif
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/lib/libc/rpc/getrpcent.c 296133 2016-02-26 23:25:21Z pfg $");
35__FBSDID("$FreeBSD: head/lib/libc/rpc/getrpcent.c 298226 2016-04-18 21:05:15Z avos $");
36
37/*
38 * Copyright (c) 1984 by Sun Microsystems, Inc.
39 */
40
41#include <sys/param.h>
36
37/*
38 * Copyright (c) 1984 by Sun Microsystems, Inc.
39 */
40
41#include <sys/param.h>
42#include <sys/types.h>
43#include <sys/socket.h>
44#include <arpa/inet.h>
45#include <assert.h>
46#include <errno.h>
47#include <nsswitch.h>
48#include <netinet/in.h>
49#include <stdio.h>
50#include <string.h>

--- 996 unchanged lines hidden ---
42#include <sys/socket.h>
43#include <arpa/inet.h>
44#include <assert.h>
45#include <errno.h>
46#include <nsswitch.h>
47#include <netinet/in.h>
48#include <stdio.h>
49#include <string.h>

--- 996 unchanged lines hidden ---