diff options
author | Berke Viktor <bviktor@hexchat.org> | 2013-05-04 17:40:23 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-05-04 17:40:23 +0200 |
commit | 3283c719368fbdc2d3f6f58aa3701d97d0b82b7f (patch) | |
tree | 131e3b408d6b7bf52669294c42b96d7a67d15b97 /plugins/python | |
parent | 22a0d5a3fb2057b3f1243005b97567687c3c2cb5 (diff) |
Use system include syntax
Diffstat (limited to 'plugins/python')
-rw-r--r-- | plugins/python/python.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/python/python.c b/plugins/python/python.c index 997b0e96..134d5e47 100644 --- a/plugins/python/python.c +++ b/plugins/python/python.c @@ -68,9 +68,9 @@ #include "hexchat-plugin.h" #undef _POSIX_C_SOURCE /* Avoid warning: also in /usr/include/features.hfrom glib.h */ -#include "Python.h" -#include "structmember.h" -#include "pythread.h" +#include <Python.h> +#include <structmember.h> +#include <pythread.h> #define VERSION_MAJOR 1 #define VERSION_MINOR 0 |