mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01: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