blob: 1d3af77f64079a13a457321da5bb4a907641baa5 [file] [log] [blame]
yangsu@google.com2eff7e22011-06-24 15:57:30 +00001#import <UIKit/UIKit.h>
2
3int main(int argc, char *argv[]) {
yangsu@google.com2e20c242011-07-07 19:26:42 +00004 signal(SIGPIPE, SIG_IGN);
yangsu@google.com2eff7e22011-06-24 15:57:30 +00005 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
6 int retVal = UIApplicationMain(argc, argv, nil, nil);
7 [pool release];
8 return retVal;
9}