blob: e7c80d108652f5b8d9bfd272b3927794fce0a64b [file] [log] [blame]
Sauw Minga7487622010-03-30 11:42:51 +00001//
2// main.m
3// ipjsystest
4//
5// Created by Liong Sauw Ming on 3/20/10.
6// Copyright Teluu Inc. (http://www.teluu.com) 2010. All rights reserved.
7//
8
9#import <UIKit/UIKit.h>
10
11int main(int argc, char *argv[]) {
12
13 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14 int retVal = UIApplicationMain(argc, argv, nil, nil);
15 [pool release];
16 return retVal;
17}