blob: 2a26f1b87b1f52e27d36004238037a8b0f458529 [file] [log] [blame]
yangsu@google.com2eff7e22011-06-24 15:57:30 +00001#import <UIKit/UIKit.h>
2
3int main(int argc, char *argv[]) {
4
5 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
6 int retVal = UIApplicationMain(argc, argv, nil, nil);
7 [pool release];
8 return retVal;
9}