aboutsummaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2014-09-27 11:54:35 -0300
committerdequis <dx@dxzone.com.ar>2014-09-27 11:54:35 -0300
commite252d8cab06e038e5801652bedf02de9170c7945 (patch)
treed83b96948a6f7b303e98727faa6a15ba8453ed09 /help.c
parentd3483776b4b7f45b99127240d76f3c978c260ca2 (diff)
RIP native win32 support (use cygwin instead)
It has been broken for a very long time and nobody cared about it.
Diffstat (limited to 'help.c')
-rw-r--r--help.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/help.c b/help.c
index 86013cb3..7ae0c61d 100644
--- a/help.c
+++ b/help.c
@@ -41,11 +41,7 @@ help_t *help_init( help_t **help, const char *helpfile )
*help = h = g_new0 ( help_t, 1 );
- h->fd = open( helpfile, O_RDONLY
-#ifdef _WIN32
- | O_BINARY
-#endif
- );
+ h->fd = open( helpfile, O_RDONLY );
if( h->fd == -1 )
{