mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
*** 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.
This commit is contained in:
parent
a7d25a1157
commit
4d4b48753c
13
ChangeLog
13
ChangeLog
@ -1,3 +1,16 @@
|
||||
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.
|
||||
|
||||
Fri May 10 09:41:54 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
|
||||
|
||||
* string/argz.h (__argz_create, argz_create): Omit const keyword
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user