]> Savannah Git Hosting - gnulib.git/commitdiff
sys_select: avoid 'static inline'
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 18 Aug 2012 22:46:14 +0000 (15:46 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 19 Aug 2012 21:13:55 +0000 (14:13 -0700)
* lib/sys_select.in.h (rpl_fd_isset): Now static, not static inline.

ChangeLog
lib/sys_select.in.h

index 61142905d8aa57977b6e2c5f246637f2fa14329e..69c003fd63248342407d7362b7606a116934462c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2012-08-19  Paul Eggert  <eggert@cs.ucla.edu>
 
+       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.
index 72704a8beca48272d01c675b048f33545bcfd7e9..ce4226769376053704ae70164cfda6b5ab4ee40b 100644 (file)
 
 /* 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;