1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

(envz_get): Remove const from return type.

This commit is contained in:
Miles Bader
1996-05-10 15:57:48 +00:00
parent e91ce32f3c
commit 4392fd309a
2 changed files with 2 additions and 2 deletions

View File

@ -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 *const argv[], char **argz, size_t *len)
__argz_create (char *argv[], char **argz, size_t *len)
{
int argc;
size_t tlen = 0;