summary refs log tree commit diff stats
path: root/plugins/python/python.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2013-05-04 17:40:23 +0200
committerBerke Viktor <bviktor@hexchat.org>2013-05-04 17:40:23 +0200
commit3283c719368fbdc2d3f6f58aa3701d97d0b82b7f (patch)
tree131e3b408d6b7bf52669294c42b96d7a67d15b97 /plugins/python/python.c
parent22a0d5a3fb2057b3f1243005b97567687c3c2cb5 (diff)
Use system include syntax
Diffstat (limited to 'plugins/python/python.c')
-rw-r--r--plugins/python/python.c6
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