Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - kcc-5/lib/test/tsyste.c
There are 5 other files named tsyste.c in the archive. Click here to see a list.
/* TSTSYS - tests the system() call.
*/
#include <stdio.h>
main(argc,argv)
int argc; char **argv;
{
	int ret;
	if (argc < 2)
		printf("Usage: tstsys <argstring>\n");
	else if (ret = system(argv[1]))
		printf("Failed, returned %d\n", ret);
}