/* Functions.m Generic Functions. Copyright (C) 1998 Free Software Foundation, Inc. Author: Felipe A. Rodriguez Date: December 1998 This file is part of the mySTEP Library and is provided under the terms of the GNU Library General Public License. */ #import #import #import #import #import #import #import int NSApplicationMain(int argc, const char **argv) { id pool = [NSAutoreleasePool new]; // root ARP [[NSApplication sharedApplication] run]; [pool release]; return 0; }