diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-18 12:03:40 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-18 12:03:40 +0000 |
commit | 531728a58a55ceb4b99fad86011654bd33827b67 (patch) | |
tree | 0a0636f036ef598b6ceb61ba816564537c6c2302 /libc/misc/wordexp/wordexp.c | |
parent | 7c3b5b935d6542b5d9d36e10fb18a7b937bd20d2 (diff) |
- exec_comm_child can not return ever
Diffstat (limited to 'libc/misc/wordexp/wordexp.c')
-rw-r--r-- | libc/misc/wordexp/wordexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/wordexp/wordexp.c b/libc/misc/wordexp/wordexp.c index 145c24c79..d8b2db16f 100644 --- a/libc/misc/wordexp/wordexp.c +++ b/libc/misc/wordexp/wordexp.c @@ -784,7 +784,7 @@ parse_arith(char **word, size_t * word_length, size_t * max_length, } /* Function called by child process in exec_comm() */ -static void +static void attribute_noreturn exec_comm_child(char *comm, int *fildes, int showerr, int noexec) { const char *args[4] = { _PATH_BSHELL, "-c", comm, NULL }; |