]>
Commit | Line | Data |
---|---|---|
9dcf0530 JF |
1 | #import <Foundation/Foundation.h> |
2 | #import <UIKit/UIDevice.h> | |
2285d9e2 | 3 | #include <stdio.h> |
9dcf0530 JF |
4 | |
5 | int main(int argc, char *argv[]) { | |
6 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; | |
7 | ||
2285d9e2 | 8 | printf("%s\n", [[[UIDevice currentDevice] uniqueIdentifier] UTF8String]); |
9dcf0530 JF |
9 | |
10 | [pool release]; | |
11 | return 0; | |
12 | } |