]> git.pld-linux.org Git - projects/rc-scripts.git/blame - src/doexec.c
netfs: respect VSERVER_ISOLATION_NET here as well
[projects/rc-scripts.git] / src / doexec.c
CommitLineData
52471a31
AM
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
7742e157
AF
13#include <unistd.h>
14
15int main(int argc, char ** argv) {
458f14b7 16 if (argc<2) return 1;
7742e157
AF
17 execvp(argv[1], argv + 2);
18 return 1;
19}
This page took 0.076444 seconds and 4 git commands to generate.