diff options
author | tobo <tobo@yandex-team.ru> | 2022-04-07 08:59:43 +0300 |
---|---|---|
committer | tobo <tobo@yandex-team.ru> | 2022-04-07 08:59:43 +0300 |
commit | 8d0bed04edbd809859fe349779c07ef122fdeca2 (patch) | |
tree | 5637277bc2da6afb261b990047079e132f5b8d2b /util/system/mktemp.cpp | |
parent | 3bd25da701a5b6de40acbea240354462348803d6 (diff) | |
download | ydb-8d0bed04edbd809859fe349779c07ef122fdeca2.tar.gz |
remove unused includes
ref:f8c119cf3a796a59ab5be4424e5364ba6a201d40
Diffstat (limited to 'util/system/mktemp.cpp')
-rw-r--r-- | util/system/mktemp.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/util/system/mktemp.cpp b/util/system/mktemp.cpp index 505b7b4a4b..801451263e 100644 --- a/util/system/mktemp.cpp +++ b/util/system/mktemp.cpp @@ -2,9 +2,7 @@ #include <util/folder/dirut.h> #include <util/generic/yexception.h> -#include <util/stream/file.h> -#include <cerrno> #include <cstring> #ifdef _win32_ @@ -12,7 +10,6 @@ #include <io.h> #else #include <unistd.h> - #include <stdlib.h> #endif extern "C" int mkstemps(char* path, int slen); |