blob: 9409aa7b004416f11993518115e86cdabc6a0a5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/****************************************************************
*
* Purpose: Program to demonstrate the 'execl' function.
* Author: M J Leslie
* Date: 21-Apr-96
*
****************************************************************/
main(int argc, char *argv[])
{
execl("exec_two", "exec_two", (char *) 0);
}
|