Merge pull request #64 in ITERATE/cyberduck from feature/windows/9074 to master
[cyberduck.git] / source / de / zathras / UKSystemInfo.m
blob8ec2f88efd3a6604be4da20bb02dcd5a5b7df17f
1 //
2 //  UKSystemInfo.m
3 //  UKSystemInfo
4 //
5 //  Created by Uli Kusterer on 23.09.04.
6 //  Copyright 2004 M. Uli Kusterer. All rights reserved.
7 //
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 );