[klibc] poll, select: fix style problems

Fix whitespace style problems in poll.c and select.c.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
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/klibc/select.c b/usr/klibc/select.c
index e416794..7af28fe 100644
--- a/usr/klibc/select.c
+++ b/usr/klibc/select.c
@@ -8,10 +8,10 @@
 
 struct __pselect6;
 __extern int __pselect6(int, fd_set *, fd_set *, fd_set *,
-                        const struct timespec *, const struct __pselect6 *);
+			const struct timespec *, const struct __pselect6 *);
 
 int select(int nfds, fd_set *readfds, fd_set *writefds,
-			fd_set *exceptfds, struct timeval *timeout)
+	   fd_set *exceptfds, struct timeval *timeout)
 {
 	int result;
 	struct timespec ts;