changeset 17050:5a5080681d6c

sys_select: avoid 'static inline' * lib/sys_select.in.h (rpl_fd_isset): Now static, not static inline.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 18 Aug 2012 15:46:14 -0700
parents eaa24b775e15
children 48275ae345c5
files ChangeLog lib/sys_select.in.h
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.
--- 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;