diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-11-04 21:03:15 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-11-04 21:03:15 +0100 |
commit | b072586d79ebc0509dd08b6f4f4f2880b33cedfa (patch) | |
tree | 98c2b9ffa0e240f71afb934e3380ff394a673378 /src/plugins/python | |
parent | 6fb423002b419f1460f51e8239eaac3a5655f78a (diff) | |
download | weechat-b072586d79ebc0509dd08b6f4f4f2880b33cedfa.zip |
core: add missing includes of stdio.h
Diffstat (limited to 'src/plugins/python')
-rw-r--r-- | src/plugins/python/weechat-python.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/python/weechat-python.c b/src/plugins/python/weechat-python.c index 77581c1f9..c079276ab 100644 --- a/src/plugins/python/weechat-python.c +++ b/src/plugins/python/weechat-python.c @@ -24,6 +24,7 @@ #undef _ #include <Python.h> +#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> |