fix debug
[xxxterm.git] / unix.c
blob4ecf1ef7ad70761a97a41acd305986d72295f355
1 /*
2 * Copyright (c) 2010, 2011 Marco Peereboom <marco@peereboom.us>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <xxxterm.h>
19 int
20 fork_exec(struct tab *t, char *argv0, const gchar *argv1, char *error)
22 switch (fork()) {
23 case -1:
24 show_oops(t, error);
25 return (1);
26 /* NOTREACHED */
27 case 0:
28 break;
29 default:
30 return (0);
33 /* child */
34 execlp(argv0, argv0, argv1, (void *)NULL);
36 _exit(0);
38 /* NOTREACHED */
40 return (0);