search for: f539b99

Displaying 1 result from an estimated 1 matches for "f539b99".

Did you mean: 53999
2013 Nov 12
0
[klibc:master] poll, select: fix style problems
...yle problems Fix whitespace style problems in poll.c and select.c. Signed-off-by: H. Peter Anvin <hpa at zytor.com> --- usr/klibc/poll.c | 2 +- usr/klibc/select.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/klibc/poll.c b/usr/klibc/poll.c index 69da693..f539b99 100644 --- a/usr/klibc/poll.c +++ b/usr/klibc/poll.c @@ -4,7 +4,7 @@ #ifndef __NR_poll -int poll (struct pollfd *fds, nfds_t nfds, long timeout) +int poll(struct pollfd *fds, nfds_t nfds, long timeout) { struct timespec timeout_ts; struct timespec *timeout_ts_p = NULL; diff --git a/usr/kl...