Merge pull request #3715 from kumpera/fix-44707
[mono.git] / mcs / class / corlib / System / Environment.cs
index 22b4ef6748ccc18659e36beff266127d8ce5c58f..e8befe2e061e34dc9bd7fda7213c8b2c2f76c222 100644 (file)
@@ -57,7 +57,7 @@ namespace System {
                 * of icalls, do not require an increment.
                 */
 #pragma warning disable 169
-               private const int mono_corlib_version = 158;
+               private const int mono_corlib_version = 159;
 #pragma warning restore 169
 
                [ComVisible (true)]
@@ -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;