mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
(__argz_create, argz_create): Omit const keyword from declaration of ARGV.
This commit is contained in:
parent
f55814ff6c
commit
b5cc7a65af
@ -32,8 +32,8 @@ __BEGIN_DECLS
|
||||
/* Make a '\0' separated arg vector from a unix argv vector, returning it in
|
||||
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 *const argv[], char **argz, size_t *len));
|
||||
error_t argz_create __P ((char *const *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
|
||||
|
Loading…
Reference in New Issue
Block a user