Skip to content

Commit

Permalink
unix: djgpp errno.h have no ENOTSUP, so define it as "next number"
Browse files Browse the repository at this point in the history
  • Loading branch information
pohmelie committed Apr 3, 2016
1 parent a0cb4ed commit 1620bf1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions unix/mpconfigport_freedos.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 42
#endif

0 comments on commit 1620bf1

Please sign in to comment.