#import <Foundation/Foundation.h>
#import <UIKit/UIDevice.h>
-#include <cstdio>
+#include <stdio.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
- printf("%s\n", [[UIDevice uniqueIdentifier] UTF8String];
+ printf("%s\n", [[[UIDevice currentDevice] uniqueIdentifier] UTF8String]);
[pool release];
return 0;