diff options
author | spreis <spreis@yandex-team.com> | 2023-04-27 11:49:01 +0300 |
---|---|---|
committer | spreis <spreis@yandex-team.com> | 2023-04-27 11:49:01 +0300 |
commit | e3ee28dfc5cdfc85597dc3fad2c368ba8f574d11 (patch) | |
tree | bc8a89af41ce439795d5a986ba17750c2892926c /util/system/utime.cpp | |
parent | b56866c69663e9a5106f99e79d30b7abd850f070 (diff) | |
download | ydb-e3ee28dfc5cdfc85597dc3fad2c368ba8f574d11.tar.gz |
Simplify system utime.h include
There is no reason now to hide include behind macro: we have sysincls properly working for years
Diffstat (limited to 'util/system/utime.cpp')
-rw-r--r-- | util/system/utime.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/system/utime.cpp b/util/system/utime.cpp index a52f84a80c..aed0317ac0 100644 --- a/util/system/utime.cpp +++ b/util/system/utime.cpp @@ -3,8 +3,7 @@ #ifdef _MSC_VER #include <sys/utime.h> #else - #define HDR <../include/utime.h> - #include HDR + #include <utime.h> #endif int TouchFile(const char* filePath) { |