1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +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

@ -57,7 +57,7 @@ envz_entry (const char *envz, size_t envz_len, const char *name)
/* Returns a pointer to the value portion of the entry in ENVZ for NAME, or 0
if there is none. */
const char *
char *
envz_get (const char *envz, size_t envz_len, const char *name)
{
const char *entry = envz_entry (envz, envz_len, name);