(in.h, inet.h) [_WIN32]: Switch <sys/socket.h> to "sys/socket.h" so all

files in w32 library use a local file access for include files in or under w32.
This commit is contained in:
Ron Koenderink 2007-08-29 23:00:55 +00:00
parent afedb8c9e2
commit 366f48b6e2
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@
#ifndef ARPA_INET_H
#define ARPA_INET_H
#include <sys/socket.h>
#include "sys/socket.h"
extern const char *inet_ntop(int af, const void *src, char *dst,
socklen_t cnt);

View file

@ -34,5 +34,5 @@
#ifndef NETINET_IN_H
#define NETINET_IN_H
#include <sys/socket.h>
#include "sys/socket.h"
#endif /* NETINET_IN_H */