mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
*** empty log message ***
* string/envz.h (envz_get): Omit const from declaration of return type.
This commit is contained in:
parent
7cf6f3e0e8
commit
349e97bda6
@ -2,6 +2,8 @@ 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
|
* string/argz.h (__argz_create, argz_create): Omit const keyword
|
||||||
from declaration of ARGV.
|
from declaration of ARGV.
|
||||||
|
* string/envz.h (envz_get): Omit const from declaration of return
|
||||||
|
type.
|
||||||
|
|
||||||
Thu May 9 09:17:46 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
Thu May 9 09:17:46 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ char *envz_entry __P ((__const char *__envz, size_t __envz_len,
|
|||||||
|
|
||||||
/* Returns a pointer to the value portion of the entry in ENVZ for NAME, or 0
|
/* Returns a pointer to the value portion of the entry in ENVZ for NAME, or 0
|
||||||
if there is none. */
|
if there is none. */
|
||||||
const char *envz_get __P ((__const char *__envz, size_t __envz_len,
|
char *envz_get __P ((__const char *__envz, size_t __envz_len,
|
||||||
__const char *__name));
|
__const char *__name));
|
||||||
|
|
||||||
/* Adds an entry for NAME with value VALUE to ENVZ & ENVZ_LEN. If an entry
|
/* Adds an entry for NAME with value VALUE to ENVZ & ENVZ_LEN. If an entry
|
||||||
|
Loading…
Reference in New Issue
Block a user