8 lines
135 B
C
8 lines
135 B
C
/* Copyright (C) 1983, 1984 by Manx Software Systems */
|
|
|
|
fexecl(path, args)
|
|
char *path, *args;
|
|
{
|
|
return fexecv(path, &args);
|
|
}
|