From 4074dc813bec72da93e34e0e77f3312d7999b822 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Fri, 3 Sep 2004 21:34:48 +0000 Subject: [PATCH] Added check for socklen_t svn path=/trunk/; revision=10781 --- reactos/include/wine/port.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/include/wine/port.h b/reactos/include/wine/port.h index ea9b416240b..cdb3572fdaf 100644 --- a/reactos/include/wine/port.h +++ b/reactos/include/wine/port.h @@ -64,6 +64,9 @@ typedef unsigned int size_t; #ifndef HAVE_SSIZE_T typedef int ssize_t; #endif +#ifndef HAVE_SOCKLEN_T +typedef unsigned int socklen_t; +#endif #ifndef HAVE_STATFS # ifdef __BEOS__