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 6114290..69c003f 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 72704a8..ce42267 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;