diff options
author | Miles Bader <miles@gnu.org> | 1996-05-10 15:48:34 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-05-10 15:48:34 +0000 |
commit | e91ce32f3c76753bdac7c3efdb2d710cff981662 (patch) | |
tree | fbf1164acb6a4255b2b0375f228133ee709d9815 /string | |
parent | 349e97bda6df0f20c948fb9fa9be716669f4fda2 (diff) | |
download | glibc-e91ce32f3c76753bdac7c3efdb2d710cff981662.tar.gz |
(argz_create): Fix param type.
Diffstat (limited to 'string')
-rw-r--r-- | string/argz.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/argz.h b/string/argz.h index 8bb535ba39..0975dd18b9 100644 --- a/string/argz.h +++ b/string/argz.h @@ -33,7 +33,7 @@ __BEGIN_DECLS ARGZ, and the total length in LEN. If a memory allocation error occurs, ENOMEM is returned, otherwise 0. The result can be destroyed using free. */ error_t __argz_create __P ((char *argv[], char **argz, size_t *len)); -error_t argz_create __P ((char **argv[], char **argz, size_t *len)); +error_t argz_create __P ((char *argv[], char **argz, size_t *len)); /* Make a '\0' separated arg vector from a SEP separated list in STRING, returning it in ARGZ, and the total length in LEN. If a |