* lib/sys_select.in.h (rpl_fd_isset): Now static, not static inline. --- ChangeLog | 3 +++ lib/sys_select.in.h | 2 +- 2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 139e88a..03291cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2012-08-18 Paul Eggert <[email protected]> + sys_select: avoid 'static inline' + * lib/sys_select.in.h (rpl_fd_isset): Now static, not static inline. + stdio: avoid 'static inline' * lib/stdio.in.h (rpl_fwrite): Now static, not static inline. * m4/stdio_h.m4 (gl_STDIO_H): Do not require AC_C_INLINE. diff --git a/lib/sys_select.in.h b/lib/sys_select.in.h index 72704a8..ce42267 100644 --- a/lib/sys_select.in.h +++ b/lib/sys_select.in.h @@ -130,7 +130,7 @@ /* Re-define FD_ISSET to avoid a WSA call while we are not using network sockets. */ -static inline int +static int rpl_fd_isset (SOCKET fd, fd_set * set) { u_int i; -- 1.7.6.5
