From 29659dd28d2645f5b349ddf3a6ae7f31f4ba9066 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 4 Sep 1998 16:27:01 +0000 Subject: 1998-09-04 Roland McGrath * string/argz.h (argz_extract, argz_next): Use `const' for ARGZ param. * string/argz-next.c, string/argz-extract.c: Fix defns. --- string/argz-extract.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'string/argz-extract.c') diff --git a/string/argz-extract.c b/string/argz-extract.c index ed3a26604d..f03272c9ec 100644 --- a/string/argz-extract.c +++ b/string/argz-extract.c @@ -1,7 +1,7 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1995, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. - Written by Miles Bader + Written by Miles Bader The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -23,7 +23,7 @@ /* Puts pointers to each string in ARGZ, plus a terminating 0 element, into ARGV, which must be large enough to hold them all. */ void -__argz_extract (char *argz, size_t len, char **argv) +__argz_extract (const char *argz, size_t len, char **argv) { while (len > 0) { -- cgit 1.4.1