aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2016-08-23 14:40:33 +0200
committerEugene Kliuchnikov <eustas@google.com>2016-08-23 14:40:33 +0200
commit81480011581d1bb40e2ed26566a95d060f2767b3 (patch)
treef340e29b31e826177c3438f9aecf3c293356683b /python
parent2032f41ffa667ae6de4f3936531586c914240fe1 (diff)
downloadbrotli-81480011581d1bb40e2ed26566a95d060f2767b3.zip
brotli-81480011581d1bb40e2ed26566a95d060f2767b3.tar.gz
brotli-81480011581d1bb40e2ed26566a95d060f2767b3.tar.bz2
Move "public" to "include/brotli"
Diffstat (limited to 'python')
-rw-r--r--python/brotlimodule.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/brotlimodule.cc b/python/brotlimodule.cc
index 88e687c..4849bca 100644
--- a/python/brotlimodule.cc
+++ b/python/brotlimodule.cc
@@ -4,8 +4,8 @@
#include <cstdio>
#include <vector>
#include "../common/version.h"
-#include "../public/encode.h"
-#include "../public/decode.h"
+#include <brotli/decode.h>
+#include <brotli/encode.h>
#if PY_MAJOR_VERSION >= 3
#define PyInt_Check PyLong_Check