summaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2004-11-26 13:48:49 +0000
committerJakub Jelinek <jakub@redhat.com>2004-11-26 13:48:49 +0000
commitf94203900a978cda33df395c36827a17d171f98e (patch)
treef60c591eb4acb7c1ca6977b86b1b86e3fecd8532 /stdlib
parent945a6124b6aa3047e3d144da4fb47cbbf5da70ee (diff)
Updated to fedora-glibc-20041126T1318cvs/fedora-glibc-2_3_3-85
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/stdlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h
index e4f79369a6..4ef32ac782 100644
--- a/stdlib/stdlib.h
+++ b/stdlib/stdlib.h
@@ -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