From: Paul Eggert Date: Sat, 18 Aug 2012 22:46:14 +0000 (-0700) Subject: sys_select: avoid 'static inline' X-Git-Tag: v0.1~478 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=91574ca19907e0a67dcbfe4900fb7813f50278f5;p=gnulib.git sys_select: avoid 'static inline' * lib/sys_select.in.h (rpl_fd_isset): Now static, not static inline. --- diff --git a/ChangeLog b/ChangeLog index 61142905d..69c003fd6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2012-08-19 Paul Eggert + sys_select: avoid 'static inline' + * lib/sys_select.in.h (rpl_fd_isset): Now static, not static inline. + mktime: avoid 'static inline' * lib/mktime.c (leapyear, ydhms_diff): Now static, not static inline. * m4/mktime.m4 (gl_PREREQ_MKTIME): Do not require AC_C_INLINE. diff --git a/lib/sys_select.in.h b/lib/sys_select.in.h index 72704a8be..ce4226769 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;