+ // This returns 10 and 6 for OS X 10.6, consistent with behaviour on
+ // other platforms.
+ SInt32 maj, min;
+ Gestalt(gestaltSystemVersionMajor, &maj);
+ Gestalt(gestaltSystemVersionMinor, &min);
+
+ if ( majorVsn != NULL )
+ *majorVsn = maj;
+
+ if ( minorVsn != NULL )
+ *minorVsn = min;
+
+#if 0