Browse Source

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

pull/1966/head
pohmelie 9 years ago
committed by Paul Sokolovsky
parent
commit
cee888255b
  1. 6
      unix/mpconfigport_freedos.h

6
unix/mpconfigport_freedos.h

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

Loading…
Cancel
Save