summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno_dlopenwrapper.c
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/source/module/pyuno_dlopenwrapper.c')
-rw-r--r--pyuno/source/module/pyuno_dlopenwrapper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyuno/source/module/pyuno_dlopenwrapper.c b/pyuno/source/module/pyuno_dlopenwrapper.c
index ac562809b11b..5654cb0f8f0a 100644
--- a/pyuno/source/module/pyuno_dlopenwrapper.c
+++ b/pyuno/source/module/pyuno_dlopenwrapper.c
@@ -19,9 +19,9 @@
/* make Python.h go first as a hack to work around _POSIX_C_SOURCE redefinition
warnings: */
-#include "Python.h"
+#include <Python.h>
-#include "sal/config.h"
+#include <sal/config.h>
#include <stdlib.h>
#include <string.h>
@@ -31,7 +31,7 @@
#endif
#include <dlfcn.h>
-#include "rtl/string.h"
+#include <rtl/string.h>
/* A wrapper around libpyuno.so, making sure the latter is loaded RTLD_GLOBAL
so that C++ exception handling works with old GCC versions (that determine