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

This commit is contained in:
pohmelie 2016-04-03 01:40:39 +03:00 committed by Paul Sokolovsky
parent 28d4b94dce
commit cee888255b

View File

@ -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