diff options
author | vvvv <vvvv@ydb.tech> | 2023-07-31 18:21:04 +0300 |
---|---|---|
committer | vvvv <vvvv@ydb.tech> | 2023-07-31 18:21:04 +0300 |
commit | dec41c40e51aa407edef81a3c566a5a15780fc49 (patch) | |
tree | 4f197b596b32f35eca368121f0dff913419da9af /contrib/libs | |
parent | 3ca8b54c96e09eb2b65be7f09675623438d559c7 (diff) | |
download | ydb-dec41c40e51aa407edef81a3c566a5a15780fc49.tar.gz |
YQL-16239 Move purecalc to public
Diffstat (limited to 'contrib/libs')
-rw-r--r-- | contrib/libs/libc_compat/include/link/link.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/libs/libc_compat/include/link/link.h b/contrib/libs/libc_compat/include/link/link.h new file mode 100644 index 0000000000..7352c26166 --- /dev/null +++ b/contrib/libs/libc_compat/include/link/link.h @@ -0,0 +1,15 @@ +#pragma once + +#ifdef _MSC_VER + +#ifdef _cplusplus +extern "C" { +#endif + +int link(const char *oldpath, const char *newpath); + +#ifdef _cplusplus +} +#endif + +#endif |