mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-21 19:00:54 +00:00
* ported to OS X (beta) * depricated GSW naming git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30215 72102866-910b-0410-8b05-ffd578937521
14 lines
283 B
Objective-C
14 lines
283 B
Objective-C
#ifndef GNUSTEP
|
|
#include <GNUstepBase/GNUstep.h>
|
|
#endif
|
|
|
|
#include <WebObjects/WebObjects.h>
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
int ret=0;
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
ret=WOApplicationMain(@"Hello", argc, argv);
|
|
[arp release];
|
|
return ret;
|
|
}
|