5 // Created by Uli Kusterer on 23.09.04.
6 // Copyright 2004 M. Uli Kusterer. All rights reserved.
9 #import "UKSystemInfo.h"
10 #include <sys/types.h>
11 #include <sys/sysctl.h>
13 void UKGetSystemVersionComponents( SInt32* outMajor, SInt32* outMinor, SInt32* outBugfix )
15 Gestalt( gestaltSystemVersionMajor, outMajor );
16 Gestalt( gestaltSystemVersionMinor, outMinor );
17 Gestalt( gestaltSystemVersionBugFix, outBugfix );