Bugzilla Bug 269591: use the poll prototype in current OpenBSD releases.

This commit is contained in:
wtchang%redhat.com 2005-04-30 00:19:33 +00:00
Родитель 1a3042a73d
Коммит faad603663
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -345,7 +345,7 @@ int poll(struct pollfd filedes[], int nfds, int timeout)
#elif defined(NETBSD)
int poll(struct pollfd *filedes, nfds_t nfds, int timeout)
#elif defined(OPENBSD)
int poll(struct pollfd *filedes, int nfds, int timeout)
int poll(struct pollfd filedes[], nfds_t nfds, int timeout)
#elif defined(FREEBSD)
int poll(struct pollfd *filedes, unsigned nfds, int timeout)
#else