mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-30 20:10:53 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39957 72102866-910b-0410-8b05-ffd578937521
16 lines
312 B
Objective-C
16 lines
312 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
|
|
GSPrintf(stdout, @"Child starting\n");
|
|
fflush(stdout);
|
|
[NSThread sleepForTimeInterval: 10.0];
|
|
GSPrintf(stdout, @"Child exiting\n");
|
|
fflush(stdout);
|
|
[arp release];
|
|
return 0;
|
|
}
|
|
|