diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-05-10 13:52:21 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-05-10 13:52:21 +0000 |
commit | 349e97bda6df0f20c948fb9fa9be716669f4fda2 (patch) | |
tree | a5086a35350864c11033816e25b523efbc3afb43 /string | |
parent | 7cf6f3e0e872ddb5150ecc0f1c2ab54e1e80bb30 (diff) | |
download | glibc-349e97bda6df0f20c948fb9fa9be716669f4fda2.zip glibc-349e97bda6df0f20c948fb9fa9be716669f4fda2.tar.gz glibc-349e97bda6df0f20c948fb9fa9be716669f4fda2.tar.bz2 |
*** empty log message ***
* string/envz.h (envz_get): Omit const from declaration of return
type.
Diffstat (limited to 'string')
-rw-r--r-- | string/envz.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/string/envz.h b/string/envz.h index bb907d7..fd88657 100644 --- a/string/envz.h +++ b/string/envz.h @@ -33,8 +33,8 @@ 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 if there is none. */ -const char *envz_get __P ((__const char *__envz, size_t __envz_len, - __const char *__name)); +char *envz_get __P ((__const char *__envz, size_t __envz_len, + __const char *__name)); /* Adds an entry for NAME with value VALUE to ENVZ & ENVZ_LEN. If an entry with the same name already exists in ENVZ, it is removed. If VALUE is |