+2016-03-14 Paul Eggert <eggert@cs.ucla.edu>
+
+ select: try to port to 2016.1.150 compiler
+ Problem reported by Balázs Hajgató in:
+ http://lists.gnu.org/archive/html/bug-gnulib/2016-03/msg00026.html
+ * lib/sys_select.in.h (select): Use 'restrict' on arguments where
+ POSIX specifies 'restrict'.
+
2016-03-13 Paul Eggert <eggert@cs.ucla.edu>
localename-tests: memory allocation fixes
# define select rpl_select
# endif
_GL_FUNCDECL_RPL (select, int,
- (int, fd_set *, fd_set *, fd_set *, struct timeval *));
+ (int, fd_set *restrict, fd_set *restrict, fd_set *restrict,
+ struct timeval *restrict));
_GL_CXXALIAS_RPL (select, int,
- (int, fd_set *, fd_set *, fd_set *, struct timeval *));
+ (int, fd_set *restrict, fd_set *restrict, fd_set *restrict,
+ struct timeval *restrict));
# else
_GL_CXXALIAS_SYS (select, int,
- (int, fd_set *, fd_set *, fd_set *, struct timeval *));
+ (int, fd_set *restrict, fd_set *restrict, fd_set *restrict,
+ struct timeval *restrict));
# endif
_GL_CXXALIASWARN (select);
#elif @HAVE_WINSOCK2_H@