Module Name: src
Committed By: pooka
Date: Tue Jan 25 17:37:01 UTC 2011
Modified Files:
src/lib/librumphijack: hijack.c
Log Message:
fix compilation on -current
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/lib/librumphijack/hijack.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/librumphijack/hijack.c
diff -u src/lib/librumphijack/hijack.c:1.19 src/lib/librumphijack/hijack.c:1.20
--- src/lib/librumphijack/hijack.c:1.19 Tue Jan 25 12:53:45 2011
+++ src/lib/librumphijack/hijack.c Tue Jan 25 17:37:00 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: hijack.c,v 1.19 2011/01/25 12:53:45 pooka Exp $ */
+/* $NetBSD: hijack.c,v 1.20 2011/01/25 17:37:00 pooka Exp $ */
/*-
* Copyright (c) 2011 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: hijack.c,v 1.19 2011/01/25 12:53:45 pooka Exp $");
+__RCSID("$NetBSD: hijack.c,v 1.20 2011/01/25 17:37:00 pooka Exp $");
#include <sys/param.h>
#include <sys/types.h>
@@ -85,9 +85,10 @@
#define LIBCPOLL __poll50
#endif
-int SELECT(int, fd_set *, fd_set *, fd_set *, struct timeval *);
-int POLLTS(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
-int POLL(struct pollfd *, nfds_t, int);
+int LIBCSELECT(int, fd_set *, fd_set *, fd_set *, struct timeval *);
+int LIBCPOLLTS(struct pollfd *, nfds_t,
+ const struct timespec *, const sigset_t *);
+int LIBCPOLL(struct pollfd *, nfds_t, int);
#define S(a) __STRING(a)
struct sysnames {