You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
291 B
21 lines
291 B
|
|
#pragma once
|
|
|
|
#if HAVE_SYS_STAT_H
|
|
#include_next <sys/stat.h>
|
|
#endif
|
|
|
|
#ifndef lstat
|
|
#define lstat stat
|
|
#endif
|
|
|
|
#ifndef S_ISLNK
|
|
#ifdef __S_IFLNK
|
|
#define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
|
|
#else
|
|
#define S_ISLNK(mode) 0
|
|
#endif
|
|
#endif
|
|
|
|
#define link(a, b) CreateHardLink((a), (b), NULL)
|