diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-27 08:17:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-27 08:17:38 +0000 |
commit | 842d709cb30d5c42e27ab4ba255f43a8e5e8c0d9 (patch) | |
tree | 53da39b6140c3d15d9fc853f965fd80ad928aa8b /include | |
parent | 61f9d0a356f84837e3e3af27831ec7d8070f15b7 (diff) | |
download | glibc-842d709cb30d5c42e27ab4ba255f43a8e5e8c0d9.tar.gz glibc-842d709cb30d5c42e27ab4ba255f43a8e5e8c0d9.tar.xz glibc-842d709cb30d5c42e27ab4ba255f43a8e5e8c0d9.zip |
Update.
* include/stdlib.h: Change return type of unsetenv to int.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index d3c8779fcd..41c5b780ed 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -40,7 +40,7 @@ extern int __drand48_iterate (unsigned short int __xsubi[3], extern int __setenv (__const char *__name, __const char *__value, int __replace); -extern void __unsetenv (__const char *__name); +extern int __unsetenv (__const char *__name); extern int __clearenv (void); extern char *__canonicalize_file_name (__const char *__name); extern char *__realpath (__const char *__name, char *__resolved); |