Skip to content
Snippets Groups Projects
Commit f9dc6440 authored by Damien George's avatar Damien George
Browse files

extmod: When including extmod headers, prefix path with extmod/.

parent 3ff16ff5
Branches
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@
#include "py/nlr.h"
#include "py/runtime.h"
#include "lib/fatfs/ff.h"
#include "fsusermount.h"
#include "extmod/fsusermount.h"
fs_user_mount_t *fatfs_mount_mkfs(mp_uint_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args, bool mkfs) {
static const mp_arg_t allowed_args[] = {
......
......@@ -31,7 +31,7 @@
#include "py/nlr.h"
#include "py/runtime.h"
#include "py/binary.h"
#include "modubinascii.h"
#include "extmod/modubinascii.h"
mp_obj_t mod_binascii_hexlify(size_t n_args, const mp_obj_t *args) {
......
......@@ -33,7 +33,7 @@
#include "lib/fatfs/ff.h"
#include "lib/fatfs/diskio.h"
#include "extmod/vfs_fat_file.h"
#include "fsusermount.h"
#include "extmod/fsusermount.h"
#define mp_obj_fat_vfs_t fs_user_mount_t
......
......@@ -35,7 +35,7 @@
#include "lib/fatfs/ff.h"
#include "lib/fatfs/diskio.h"
#include "extmod/vfs_fat_file.h"
#include "fsusermount.h"
#include "extmod/fsusermount.h"
#include "py/lexer.h"
#if _USE_LFN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment