You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
unix: djgpp errno.h have no ENOTSUP, so define it to Linux value.
This commit is contained in:
committed by
Paul Sokolovsky
parent
28d4b94dce
commit
cee888255b
@@ -36,3 +36,9 @@
|
||||
|
||||
// djgpp dirent struct does not have d_ino field
|
||||
#undef _DIRENT_HAVE_D_INO
|
||||
|
||||
// djgpp errno.h have no ENOTSUP
|
||||
#include <errno.h>
|
||||
#ifndef ENOTSUP
|
||||
#define ENOTSUP 88
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user