diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-05-10 20:22:00 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-05-10 20:22:00 +0000 |
commit | a7d25a11579e10a7407fd486d3dd7c6d18ff45ea (patch) | |
tree | b37ba5f9e364b85e67e938a19fcfdc0b170b5926 /string | |
parent | 4392fd309a78064e5b6d873fc8b2d66c358d7e77 (diff) | |
download | glibc-a7d25a11579e10a7407fd486d3dd7c6d18ff45ea.zip glibc-a7d25a11579e10a7407fd486d3dd7c6d18ff45ea.tar.gz glibc-a7d25a11579e10a7407fd486d3dd7c6d18ff45ea.tar.bz2 |
(__argz_create, argz_create): Restore const keyword.
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 0975dd1..924dd46 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 *argv[], char **argz, size_t *len)); -error_t argz_create __P ((char *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 *const 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 |