diff options
author | Dan Moseley <danmose@microsoft.com> | 2019-03-09 13:54:04 -0800 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2019-03-11 08:16:25 -0700 |
commit | f94728547617160837baedc43b7786a457b3e45f (patch) | |
tree | e95d0a638d6303b5110c043fbaaeb434aa717f96 /src | |
parent | f9820b7c45ed1ae99fef54944727e98bacbd2a2a (diff) | |
download | coreclr-f94728547617160837baedc43b7786a457b3e45f.tar.gz coreclr-f94728547617160837baedc43b7786a457b3e45f.tar.bz2 coreclr-f94728547617160837baedc43b7786a457b3e45f.zip |
Remove 2 suffix step 1 (dotnet/corefx#35904)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs b/src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs index cb0f4284f0..d06fbda718 100644 --- a/src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs +++ b/src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs @@ -54,13 +54,13 @@ internal static partial class Interop HasBirthTime = 1, } - [DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_FStat2", SetLastError = true)] + [DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_FStat", SetLastError = true)] internal static extern int FStat(SafeFileHandle fd, out FileStatus output); - [DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_Stat2", SetLastError = true)] + [DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_Stat", SetLastError = true)] internal static extern int Stat(string path, out FileStatus output); - [DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_LStat2", SetLastError = true)] + [DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_LStat", SetLastError = true)] internal static extern int LStat(string path, out FileStatus output); } } |