diff options
author | kaliki <kaliki@yandex-team.ru> | 2022-02-10 16:48:06 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:06 +0300 |
commit | 9741dc538ed4ca44e947c0965a2bbc50305eb996 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /util/folder/lstat_win.h | |
parent | a79404df3a1d90f4b37ac8a1ce0a2bfb5dfd06f1 (diff) | |
download | ydb-9741dc538ed4ca44e947c0965a2bbc50305eb996.tar.gz |
Restoring authorship annotation for <kaliki@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/folder/lstat_win.h')
-rw-r--r-- | util/folder/lstat_win.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/util/folder/lstat_win.h b/util/folder/lstat_win.h index 10152db2b5..0bf7c19055 100644 --- a/util/folder/lstat_win.h +++ b/util/folder/lstat_win.h @@ -1,20 +1,20 @@ #pragma once - + #include <util/system/defaults.h> #include "fts.h" - -#ifdef _win_ + +#ifdef _win_ #include <sys/stat.h> - + #ifdef __cplusplus -extern "C" { +extern "C" { #endif - + #define _S_IFLNK 0xA000 int lstat(const char* fileName, stat_struct* fileStat); - + #ifdef __cplusplus -} +} #endif - -#endif //_win_ + +#endif //_win_ |