summaryrefslogtreecommitdiff
path: root/reference/C/EXAMPLES/exec_two.c
blob: d1d48b5d3318dcedbcadf1afd150d125780c7ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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]);
}