diff options
author | 1999-02-15 18:53:57 +0000 | |
---|---|---|
committer | 1999-02-15 18:53:57 +0000 | |
commit | 5ce392c3b1dfe7e810f53f5b4670f3ad8085c841 (patch) | |
tree | ba86ebde4bc0d3a7571d194079da1150635f9707 | |
parent | reorder some flag handling in unmount for safer locking (diff) | |
download | wireguard-openbsd-5ce392c3b1dfe7e810f53f5b4670f3ad8085c841.tar.xz wireguard-openbsd-5ce392c3b1dfe7e810f53f5b4670f3ad8085c841.zip |
add socklen_t
-rw-r--r-- | sys/sys/types.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/types.h b/sys/sys/types.h index c606bba8847..065f5a51b39 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: types.h,v 1.14 1999/01/07 23:38:59 millert Exp $ */ +/* $OpenBSD: types.h,v 1.15 1999/02/15 18:53:57 millert Exp $ */ /* $NetBSD: types.h,v 1.29 1996/11/15 22:48:25 jtc Exp $ */ /*- @@ -94,6 +94,7 @@ typedef int32_t suseconds_t; /* microseconds (signed) */ typedef u_int32_t in_addr_t; /* base type for internet address */ typedef u_int16_t in_port_t; /* IP port type */ typedef u_int8_t sa_family_t; /* sockaddr address family type */ +typedef u_int32_t socklen_t; /* length type for network syscalls */ /* * These belong in unistd.h, but are placed here too to ensure that |