From: Rich Felker Date: Sat, 19 Feb 2011 17:44:36 +0000 (-0500) Subject: fix typo in wordexp.h (note that the function is still unimplemented) X-Git-Tag: v0.7.0~85 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5316d083ec87e91cd11fde900e0158f82563d8dc;p=oweals%2Fmusl.git fix typo in wordexp.h (note that the function is still unimplemented) --- diff --git a/include/wordexp.h b/include/wordexp.h index 91995c44..0691c8ea 100644 --- a/include/wordexp.h +++ b/include/wordexp.h @@ -19,7 +19,7 @@ extern "C" { typedef struct { size_t we_wordc; - char **wc_wordv; + char **we_wordv; size_t we_offs; } wordexp_t;