Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 530080 | Differences between
and this patch

Collapse All | Expand All

(-)./tirpc/rpc/rpcent.h (+4 lines)
Lines 64-69 extern struct rpcent *getrpcbynumber(int Link Here
64
extern struct rpcent *getrpcent(void);
64
extern struct rpcent *getrpcent(void);
65
#endif
65
#endif
66
66
67
#ifndef __GLIBC__
68
#define __THROW
69
#endif
70
67
extern void setrpcent(int) __THROW;
71
extern void setrpcent(int) __THROW;
68
extern void endrpcent(void) __THROW;
72
extern void endrpcent(void) __THROW;
69
#ifdef __GLIBC__
73
#ifdef __GLIBC__
(-)./src/getrpcent.c (+8 lines)
Lines 50-55 Link Here
50
#include <libc_private.h>
50
#include <libc_private.h>
51
#endif
51
#endif
52
52
53
#ifndef __GLIBC__
54
struct rpcent {
55
	char    *r_name;        /* name of server for this rpc program */
56
	char    **r_aliases;    /* alias list */
57
	int     r_number;       /* rpc program number */
58
};
59
#endif
60
53
/*
61
/*
54
 * Internet version.
62
 * Internet version.
55
 */
63
 */
(-)./src/bindresvport.c (+4 lines)
Lines 36-41 Link Here
36
 * Portions Copyright(C) 1996, Jason Downs.  All rights reserved.
36
 * Portions Copyright(C) 1996, Jason Downs.  All rights reserved.
37
 */
37
 */
38
38
39
#ifndef __GLIBC__
40
#include <netdb.h>
41
#endif
42
39
#include <sys/types.h>
43
#include <sys/types.h>
40
#include <sys/socket.h>
44
#include <sys/socket.h>
41
45

Return to bug 530080