diff --git a/include/wine/port.h b/include/wine/port.h index a9e432f1457..8f14188b1cc 100644 --- a/include/wine/port.h +++ b/include/wine/port.h @@ -10,6 +10,7 @@ #include #include +#include /* Types */ @@ -124,4 +125,8 @@ int usleep (unsigned int useconds); int lstat(const char *file_name, struct stat *buf); #endif /* HAVE_LSTAT */ +#ifndef S_ISLNK +#define S_ISLNK(mod) (0) +#endif /* S_ISLNK */ + #endif /* !defined(__WINE_WINE_PORT_H) */