summaryrefslogtreecommitdiff
path: root/reference/C/EXAMPLES/exec_two.c
diff options
context:
space:
mode:
Diffstat (limited to 'reference/C/EXAMPLES/exec_two.c')
-rw-r--r--reference/C/EXAMPLES/exec_two.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/reference/C/EXAMPLES/exec_two.c b/reference/C/EXAMPLES/exec_two.c
new file mode 100644
index 0000000..d1d48b5
--- /dev/null
+++ b/reference/C/EXAMPLES/exec_two.c
@@ -0,0 +1,14 @@
+/****************************************************************
+ *
+ * Purpose: This program is executed by exec_one to demonstrate
+ * the execl function.
+ * Author: M J Leslie
+ * Date: 21-Apr-96
+ *
+ ****************************************************************/
+
+
+main(int argc, char *argv[])
+{
+ printf("This is %s\n", argv[0]);
+}