(disassoc) [_WIN32]: Add #ifndef _WIN32 around disassoc() as

WIN32 does not use it and does not support fork().
This commit is contained in:
Ron Koenderink 2006-01-01 19:29:12 +00:00
parent 5aba44f5f2
commit 8a25029c75

View file

@ -38,6 +38,7 @@
#include <config.h> #include <config.h>
#ifndef _WIN32
#include <fcntl.h> #include <fcntl.h>
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
@ -78,3 +79,4 @@ disassoc(void)
return 0; return 0;
} }
#endif