mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
2004-11-26 Jakub Jelinek <jakub@redhat.com> * stdlib/stdlib.h (setenv): Use nonnull only for second argument. (unsetenv): Remove.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2004-11-26 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* stdlib/stdlib.h (setenv): Use nonnull only for second argument.
|
||||||
|
(unsetenv): Remove.
|
||||||
|
|
||||||
2004-11-23 Paolo Bonzini <bonzini@gnu.org>
|
2004-11-23 Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
* posix/regcomp.c (analyze_tree): Always call calc_epsdest.
|
* posix/regcomp.c (analyze_tree): Always call calc_epsdest.
|
||||||
|
@ -669,10 +669,10 @@ extern int putenv (char *__string) __THROW __nonnull ((1));
|
|||||||
/* Set NAME to VALUE in the environment.
|
/* Set NAME to VALUE in the environment.
|
||||||
If REPLACE is nonzero, overwrite an existing value. */
|
If REPLACE is nonzero, overwrite an existing value. */
|
||||||
extern int setenv (__const char *__name, __const char *__value, int __replace)
|
extern int setenv (__const char *__name, __const char *__value, int __replace)
|
||||||
__THROW __nonnull ((1, 2));
|
__THROW __nonnull ((2));
|
||||||
|
|
||||||
/* Remove the variable NAME from the environment. */
|
/* Remove the variable NAME from the environment. */
|
||||||
extern int unsetenv (__const char *__name) __THROW __nonnull ((1));
|
extern int unsetenv (__const char *__name) __THROW;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __USE_MISC
|
#ifdef __USE_MISC
|
||||||
|
Reference in New Issue
Block a user