diff options
| author | Jeff Epler <jepler@gmail.com> | 2018-05-07 20:03:30 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2018-05-07 20:03:30 -0500 |
| commit | a6072f7ae356f3e6c8100a78a2ae3bb976382a20 (patch) | |
| tree | 93d2b2a1efc55e4843a5a50ca42b16786ec30601 /extmod/moduzlib.c | |
| parent | d32349cee83587e07d927c6ca7781b402a0c1bd1 (diff) | |
uzlib: convert to submodule
Textualy, the files in lib/uzlib/src were identical to the ones committed
in extmod/uzlib so there should be no behavioral change possible as a
result of this commit.
Diffstat (limited to 'extmod/moduzlib.c')
| -rw-r--r-- | extmod/moduzlib.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/extmod/moduzlib.c b/extmod/moduzlib.c index e9af07370..3d2ab88af 100644 --- a/extmod/moduzlib.c +++ b/extmod/moduzlib.c @@ -33,7 +33,7 @@ #if MICROPY_PY_UZLIB -#include "uzlib/tinf.h" +#include "../../lib/uzlib/src/tinf.h" #if 0 // print debugging info #define DEBUG_printf DEBUG_printf @@ -215,10 +215,10 @@ const mp_obj_module_t mp_module_uzlib = { // Source files #include'd here to make sure they're compiled in // only if module is enabled by config setting. -#include "uzlib/tinflate.c" -#include "uzlib/tinfzlib.c" -#include "uzlib/tinfgzip.c" -#include "uzlib/adler32.c" -#include "uzlib/crc32.c" +#include "../../lib/uzlib/src/tinflate.c" +#include "../../lib/uzlib/src/tinfzlib.c" +#include "../../lib/uzlib/src/tinfgzip.c" +#include "../../lib/uzlib/src/adler32.c" +#include "../../lib/uzlib/src/crc32.c" #endif // MICROPY_PY_UZLIB |
