diff options
author | Damien George <damien.p.george@gmail.com> | 2020-03-18 17:47:15 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-03-18 21:01:07 +1100 |
commit | 2cdf1d25f59409b6130c0e8b6cf50300aed2d7e6 (patch) | |
tree | 762d210ad4a7c51903498bc0a2c3b885059e778f /ports/unix/moduselect.c | |
parent | 68b1bc2042f8e5dcdfbe12c5b0dace0b174f6911 (diff) |
unix: Remove custom file implementation to use extmod's VFS POSIX one.
The implementation in extmod/vfs_posix_file.c is now equivalent to that in
ports/unix/file.c, so remove the latter and use the former instead.
Diffstat (limited to 'ports/unix/moduselect.c')
-rw-r--r-- | ports/unix/moduselect.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ports/unix/moduselect.c b/ports/unix/moduselect.c index a48e90415..bebffc5da 100644 --- a/ports/unix/moduselect.c +++ b/ports/unix/moduselect.c @@ -40,7 +40,6 @@ #include "py/objtuple.h" #include "py/mphal.h" #include "py/mpthread.h" -#include "fdfile.h" #define DEBUG 0 |