1
0
Fork 0
mirror of https://github.com/pissnet/angiosperm.git synced 2025-05-05 02:35:04 +01:00

cleanup: u_long -> unsigned long

This commit is contained in:
Elizabeth Myers 2016-03-23 22:03:24 -05:00
parent 30cf391b89
commit 491b3b39d5
4 changed files with 3 additions and 4 deletions

View file

@ -113,7 +113,7 @@ char *rb_strerror(int error);
#define EAFNOSUPPORT WSAEAFNOSUPPORT
#define pipe(x) _pipe(x, 1024, O_BINARY)
#define ioctl(x,y,z) ioctlsocket(x,y, (u_long *)z)
#define ioctl(x,y,z) ioctlsocket(x,y, (unsigned long *)z)
#define WNOHANG 1

View file

@ -24,7 +24,6 @@
#define INET6_ADDRSTRLEN 46
#endif
/* typedef unsigned int u_int; */
#define rb_prefix_touchar(prefix) ((unsigned char *)&(prefix)->add.sin)
#define MAXLINE 1024
#define BIT_TEST(f, b) ((f) & (b))