Files
linux-packaging-mono/mcs/class/System.Core/corefx/Interop.cs

19 lines
286 B
C#
Raw Normal View History

using System;
internal static partial class Interop
{
internal static partial class Sys
{
internal static uint GetEUid ()
{
throw new PlatformNotSupportedException ();
}
internal static int SetEUid (uint euid)
{
throw new PlatformNotSupportedException ();
}
}
}