From e995f8cfda6baff41f41c0e886a196a4a7efbfd0 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 6 Dec 2000 20:20:11 +0000 Subject: [PATCH] Added define for S_ISLNK if missing. --- include/wine/port.h | 5 +++++ 1 file changed, 5 insertions(+) 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) */