source: issm/trunk-jpl/externalpackages/petsc-dev/src/xcode/examples/main.m@ 11896

Last change on this file since 11896 was 11896, checked in by habbalf, 13 years ago

petsc-dev : Petsc development code in external packages. Mercurial updates

File size: 359 bytes
Line 
1//
2// main.m
3// iphone
4//
5// Created by Barry Smith on 5/12/10.
6// Copyright __MyCompanyName__ 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}
Note: See TracBrowser for help on using the repository browser.