From ae9ce86324ab4720dcb334d137d22cd204faaacf Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Thu, 12 Feb 2004 22:39:18 +0000 Subject: [PATCH] Windows porting fix - Define O_NONBLOCK if not defined. --- include/wine/port.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wine/port.h b/include/wine/port.h index 9d3ccc1b4ef..e7424f92e0a 100644 --- a/include/wine/port.h +++ b/include/wine/port.h @@ -120,6 +120,9 @@ struct statfs; # define O_LARGEFILE 0 #endif +#ifndef O_NONBLOCK +# define O_NONBLOCK 0 +#endif /**************************************************************** * Constants -- 2.11.4.GIT