about summary refs log tree commit diff
path: root/string/argz-next.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-09-04 16:27:01 +0000
committerRoland McGrath <roland@gnu.org>1998-09-04 16:27:01 +0000
commit29659dd28d2645f5b349ddf3a6ae7f31f4ba9066 (patch)
treef97aa5cb44cc7b7287b2cd791ed2fa376ab5baa1 /string/argz-next.c
parent1097c6030a2f99075a259e3b5151122094ab68dc (diff)
downloadglibc-29659dd28d2645f5b349ddf3a6ae7f31f4ba9066.tar.gz
glibc-29659dd28d2645f5b349ddf3a6ae7f31f4ba9066.tar.xz
glibc-29659dd28d2645f5b349ddf3a6ae7f31f4ba9066.zip
1998-09-04 Roland McGrath <roland@baalperazim.frob.com>
	* string/argz.h (argz_extract, argz_next): Use `const' for ARGZ param.
	* string/argz-next.c, string/argz-extract.c: Fix defns.
Diffstat (limited to 'string/argz-next.c')
-rw-r--r--string/argz-next.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/string/argz-next.c b/string/argz-next.c
index 46d393444e..edb495653e 100644
--- a/string/argz-next.c
+++ b/string/argz-next.c
@@ -1,7 +1,7 @@
 /* Iterate through the elements of an argz block.
-   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 <miles@gnu.ai.mit.edu>
+   Written by Miles Bader <miles@gnu.org>
 
    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
@@ -22,7 +22,7 @@
 #include <string.h>
 
 char *
-__argz_next (char *argz, size_t argz_len, const char *entry)
+__argz_next (const char *argz, size_t argz_len, const char *entry)
 {
   if (entry)
     {