Skip to content
Snippets Groups Projects
Commit 6d57a92f authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

utils/fs: use <sys/stat.h>, not <sys\stat.h>


Fix cross-compilation failure from linux to windows:
```
  CC utils/unlit/dist-install/build/fs.o
utils/unlit/fs.c:24:10: fatal error: sys\stat.h: No such file or directory
 #include <sys\stat.h>
          ^~~~~~~~~~~~
```

Signed-off-by: default avatarSergei Trofimovich <slyfox@gentoo.org>
parent b7139869
No related branches found
No related tags found
No related merge requests found
......@@ -21,8 +21,8 @@
#include <io.h>
#include <fcntl.h>
#include <wchar.h>
#include <sys\stat.h>
#include <sys\types.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <share.h>
/* This function converts Windows paths between namespaces. More specifically
......
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