Skip to content
Snippets Groups Projects
Commit e995f8cf authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Added define for S_ISLNK if missing.

parent 9fd831f6
No related branches found
No related tags found
No related merge requests found
......@@ -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) */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment