Bug #9883
undefined memset used in FD_ZERO()
Status:
New
Priority:
Normal
Assignee:
-
Category:
-
Start date:
2018-10-10
Due date:
% Done:
0%
Estimated time:
Difficulty:
Medium
Tags:
Gerrit CR:
Description
The following sample program does not compile:
#include <sys/select.h> void foo(fd_set *fds) { FD_ZERO(fds); }
Alan Coopersmith pointed this out in the context of https://github.com/libproxy/libproxy/pull/93. SUS does say that including <sys/select.h>
is all that should be required so we need to fix the headers here.
No data to display