mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-01 20:40:53 +00:00
17 lines
312 B
Mathematica
17 lines
312 B
Mathematica
|
#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;
|
||
|
}
|
||
|
|