Fix STR #2819 (include dirent.h on Windows/MinGW).

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9382 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2012-04-23 09:47:04 +00:00
parent 42416fa912
commit fd9f4e6132
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ inline int fl_filename_relative(char *to, const char *from) { return fl_filename
# endif /* __cplusplus */
# if defined(WIN32) && !defined(__CYGWIN__) && !defined(__WATCOMC__)
# if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__WATCOMC__)
struct dirent {char d_name[1];};