Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2004-11-26  Jakub Jelinek  <jakub@redhat.com>

	* stdlib/stdlib.h (setenv): Use nonnull only for second argument.
	(unsetenv): Remove.
  • Loading branch information
Ulrich Drepper committed Nov 26, 2004
1 parent 20dc2f7 commit 9069253
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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>

* posix/regcomp.c (analyze_tree): Always call calc_epsdest.
Expand Down
4 changes: 2 additions & 2 deletions stdlib/stdlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -669,10 +669,10 @@ extern int putenv (char *__string) __THROW __nonnull ((1));
/* Set NAME to VALUE in the environment.
If REPLACE is nonzero, overwrite an existing value. */
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. */
extern int unsetenv (__const char *__name) __THROW __nonnull ((1));
extern int unsetenv (__const char *__name) __THROW;
#endif

#ifdef __USE_MISC
Expand Down

0 comments on commit 9069253

Please sign in to comment.