public static void Free(IntPtr p) { if (OperatingSystem.IsWindows()) { Windows.Free(p); } else { Unix.Free(p); } }