diff options
| author | dholland <dholland@NetBSD.org> | 2016-01-23 02:36:57 +0000 |
|---|---|---|
| committer | dholland <dholland@NetBSD.org> | 2016-01-23 02:36:57 +0000 |
| commit | 67fad3956735ca15f7b0f5367cb2a4d195cfb1cd (patch) | |
| tree | ae180da7a052a53d4ab58018a2f911964fc8f327 /include | |
| parent | 2777fa4b90eef382aa4a74c762110851b4266985 (diff) | |
Needs sys/select.h for fd_set; fails only when _POSIX_SOURCE is defined,
because then something else doesn't include it. (I guess.)
Diffstat (limited to 'include')
| -rw-r--r-- | include/rpc/svc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rpc/svc.h b/include/rpc/svc.h index 93730b04e75..7a6f70bacdb 100644 --- a/include/rpc/svc.h +++ b/include/rpc/svc.h @@ -1,4 +1,4 @@ -/* $NetBSD: svc.h,v 1.31 2016/01/23 02:34:09 dholland Exp $ */ +/* $NetBSD: svc.h,v 1.32 2016/01/23 02:36:57 dholland Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -42,6 +42,7 @@ #define _RPC_SVC_H_ #include <sys/cdefs.h> +#include <sys/select.h> #include <rpc/rpc_com.h> /* |
