Merge pull request #3715 from kumpera/fix-44707
[mono.git] / mcs / class / corlib / System / Environment.cs
index 6411972d27f61017fb0ea343818bed4272cf3034..e8befe2e061e34dc9bd7fda7213c8b2c2f76c222 100644 (file)
@@ -996,6 +996,14 @@ namespace System {
                [MethodImplAttribute (MethodImplOptions.InternalCall)]
                internal extern static int GetPageSize ();
 
+               [MethodImplAttribute(MethodImplOptions.InternalCall)]
+               extern private static string get_bundled_machine_config ();
+
+               internal static string GetBundledMachineConfig ()
+               {
+                       return get_bundled_machine_config ();
+               }
+
                static internal bool IsUnix {
                        get {
                                int platform = (int) Environment.Platform;