/* $OpenBSD: system.c,v 1.2 2001/11/11 19:57:43 marc Exp $ *//* * Placed in the PUBLIC DOMAIN *//* * system checks the threads system interface and that waitpid/wait4 * works correctly. */#include<stdlib.h>#include"test.h"intmain(intargc,char**argv){ASSERT(system("ls")==0);SUCCEED;}