/usr/share/openscenegraph/examples/osgviewerIPhone/main.m is in openscenegraph-examples 3.2.1-7ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | //
// main.m
// iphoneViewer
//
// Created by Thomas Hogarth on 10/05/2009.
// Copyright HogBox 2009. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [NSAutoreleasePool new];
UIApplicationMain(argc, argv, nil, @"iphoneViewerAppDelegate");
[pool release];
return 0;
}
|