// // main.m // Reachability // // Created by Andrew Donoho on 2009/12/28. // Copyright Donoho Design Group, L.L.C. 2009. All rights reserved. // #import int main(int argc, char *argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int retVal = UIApplicationMain(argc, argv, nil, nil); [pool release]; return retVal; }