Added define for S_ISLNK if missing.

This commit is contained in:
Alexandre Julliard 2000-12-06 20:20:11 +00:00
parent 9fd831f68a
commit e995f8cfda
1 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,7 @@
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
/* 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) */