diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-05-10 13:43:03 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-05-10 13:43:03 +0000 |
commit | b5cc7a65af6068fa1020054220c123810e8ae3b7 (patch) | |
tree | 36d7a2b61467ed4680e1c98ef6021a2f1204b88b /string | |
parent | f55814ff6c0125c5f19cdb060df8f04cbee13755 (diff) | |
download | glibc-b5cc7a65af6068fa1020054220c123810e8ae3b7.tar.gz glibc-b5cc7a65af6068fa1020054220c123810e8ae3b7.tar.xz glibc-b5cc7a65af6068fa1020054220c123810e8ae3b7.zip |
(__argz_create, argz_create): Omit const keyword from declaration of ARGV.
Diffstat (limited to 'string')
-rw-r--r-- | string/argz.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/string/argz.h b/string/argz.h index 248a4da1f3..8bb535ba39 100644 --- a/string/argz.h +++ b/string/argz.h @@ -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 |