diff options
Diffstat (limited to 'plugins/python')
-rw-r--r-- | plugins/python/python.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/python/python.c b/plugins/python/python.c index 55adf989..3c535057 100644 --- a/plugins/python/python.c +++ b/plugins/python/python.c @@ -55,8 +55,14 @@ #include <string.h> #include <stdlib.h> #include <sys/types.h> + +#ifdef WIN32 #include "../../src/common/dirent.h" #include "../../config.h" +#else +#include <unistd.h> +#include <dirent.h> +#endif #include "xchat-plugin.h" #include "Python.h" |