diff options
author | Emmanuel Bouthenot <kolter@openics.org> | 2006-10-10 18:08:48 +0000 |
---|---|---|
committer | Emmanuel Bouthenot <kolter@openics.org> | 2006-10-10 18:08:48 +0000 |
commit | 5d70f20c27bb8de176d2ea8d278453d608d210e9 (patch) | |
tree | 40acc526af0c249df158d68059d85379bab67c3b /src/plugins/scripts/python | |
parent | 71d5c65e28e9a735b18a000cd1ee19e7f67b4db9 (diff) | |
download | weechat-5d70f20c27bb8de176d2ea8d278453d608d210e9.zip |
adding some missing headers in plugins
Diffstat (limited to 'src/plugins/scripts/python')
-rw-r--r-- | src/plugins/scripts/python/weechat-python.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/plugins/scripts/python/weechat-python.c b/src/plugins/scripts/python/weechat-python.c index 258f9bd9d..380af33e3 100644 --- a/src/plugins/scripts/python/weechat-python.c +++ b/src/plugins/scripts/python/weechat-python.c @@ -19,14 +19,20 @@ /* weechat-python.c: Python plugin support for WeeChat */ +#undef _ #include <Python.h> + +#include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stdarg.h> +#include <time.h> + #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> -#undef _ + #include "../../weechat-plugin.h" #include "../weechat-script.h" |