This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/goodies/spwndcw.c

15 lines
260 B
C

/*
spwndcw.c - Will be spawned by the spwnrcw program.
Compile & Link: wcl386 -l=causeway spwndcw.c
*/
#include <stdio.h>
#include <stdlib.h>
void main()
{
puts( "\nApplication #2 spawned\n" );
/* Send back exit code 59 */
exit( 59 );
}