haiku/src/kernel/libroot/posix/poll.c
Axel Dörfler b640ca789b Renamed VFS syscalls to the new style.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7977 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-06-15 15:49:34 +00:00

17 lines
304 B
C

/*
** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#include <poll.h>
#include <syscalls.h>
int
poll(struct pollfd *fds, nfds_t numfds, int timeout)
{
return _kern_poll(fds, numfds, timeout * 1000LL);
}