]> TLD Linux GIT Repositories - rc-scripts.git/blob - src/doexec.c
- from PLD
[rc-scripts.git] / src / doexec.c
1 /*
2  * Copyright (c) 1997-1999 Red Hat, Inc. All rights reserved.
3  *
4  * This software may be freely redistributed under the terms of the GNU
5  * public license.
6  *
7  * You should have received a copy of the GNU General Public License
8  * along with this program; if not, write to the Free Software
9  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
10  *
11  */
12
13 #include <unistd.h>
14
15 int main(int argc, char ** argv) {
16     if (argc<2) return 1;
17     execvp(argv[1], argv + 2);
18     return 1;
19 }