aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/libc_compat/include/link/link.h
blob: 7352c261669f9fe738c4988852a2535a02dd0395 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#ifdef _MSC_VER

#ifdef _cplusplus
extern "C" {
#endif

int link(const char *oldpath, const char *newpath);

#ifdef _cplusplus
}
#endif

#endif