Remove some definitions from unix_func.h, as we have them in our public headers now. This file is not wine synced.

svn path=/branches/header-work/; revision=46790
This commit is contained in:
Timo Kreuzer
2010-04-09 13:06:30 +00:00
parent 8a7d6a9a0f
commit b1675d448b
-16
View File
@@ -1,19 +1,4 @@
#define POLLIN 001
#define POLLPRI 002
#define POLLOUT 004
#define POLLNORM POLLIN
#define POLLERR 010
#define POLLHUP 020
#define POLLNVAL 040
struct pollfd
{
int fd; /* file descriptor */
short events; /* requested events */
short revents; /* returned events */
};
#define F_SETFL 4 /* set file->f_flags */
#ifndef O_NONBLOCK
@@ -24,5 +9,4 @@ struct pollfd
int poll(struct pollfd *fds, unsigned long nfds, int timo);
int socketpair (int af, int type, int protocol, SOCKET socket[2]);
const char * inet_ntop (int af, const void *src, char *dst, size_t cnt);
int fcntl(int fd, int cmd, long arg);