about summary refs log tree commit diff
path: root/string/argz-create.c
diff options
context:
space:
mode:
authorThomas Bushnell, BSG <thomas@gnu.org>1996-05-10 20:26:39 +0000
committerThomas Bushnell, BSG <thomas@gnu.org>1996-05-10 20:26:39 +0000
commit4d4b48753c60a45b80f1b3c64f424928b5360396 (patch)
tree79c527398dbfec2883cf8fa75b8875c6c16cde7c /string/argz-create.c
parenta7d25a11579e10a7407fd486d3dd7c6d18ff45ea (diff)
downloadglibc-4d4b48753c60a45b80f1b3c64f424928b5360396.tar.gz
glibc-4d4b48753c60a45b80f1b3c64f424928b5360396.tar.xz
glibc-4d4b48753c60a45b80f1b3c64f424928b5360396.zip
*** empty log message ***
Fri May 10 16:22:44 1996  Michael I. Bushnell, p/BSG  <mib@gnu.ai.mit.edu>

	* string/argz-create.c (__argz_create): Restore const keyword to
 	ARGV parm.
	* string/argz.h (__argz_create, argz_create): Restore const
 	keyword.

Fri May 10 11:48:03 1996  Miles Bader  <miles@gnu.ai.mit.edu>

	* string/argz.h (argz_create): Fix param type.
	* string/argz-create.c (__argz_create): Remove const from param type.
	* string/envz.c (envz_get): Remove const from return type.
Diffstat (limited to 'string/argz-create.c')
-rw-r--r--string/argz-create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/argz-create.c b/string/argz-create.c
index 1b4b6068f5..2eea91162e 100644
--- a/string/argz-create.c
+++ b/string/argz-create.c
@@ -26,7 +26,7 @@
    ARGZ, and the total length in LEN.  If a memory allocation error occurs,
    ENOMEM is returned, otherwise 0.  */
 error_t
-__argz_create (char *argv[], char **argz, size_t *len)
+__argz_create (char *const argv[], char **argz, size_t *len)
 {
   int argc;
   size_t tlen = 0;