From: Thomas Bushnell, BSG Date: Fri, 10 May 1996 13:43:03 +0000 (+0000) Subject: (__argz_create, argz_create): Omit const keyword from declaration of ARGV. X-Git-Tag: cvs/libc-960511~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5cc7a65af6068fa1020054220c123810e8ae3b7;p=thirdparty%2Fglibc.git (__argz_create, argz_create): Omit const keyword from declaration of ARGV. --- diff --git a/string/argz.h b/string/argz.h index 248a4da1f37..8bb535ba39c 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