diff return__.c @ 72:b0e95b878322

added segfault detection support
author thomask
date Wed, 27 Oct 2004 17:26:14 +0000
parents
children 94b746f24b50
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/return__.c	Wed Oct 27 17:26:14 2004 +0000
@@ -0,0 +1,8 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, char *argv[]){
+	int returnCode = system(argv[1]);
+	printf("%d\n", returnCode);
+	return 0;
+}