Skip to content
Snippets Groups Projects
Commit cee88825 authored by pohmelie's avatar pohmelie Committed by Paul Sokolovsky
Browse files

unix: djgpp errno.h have no ENOTSUP, so define it to Linux value.

parent 28d4b94d
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment