diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-04-12 22:11:15 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:36 +0200 |
commit | c311492873eaff4ca86db511ae971abc8d688221 (patch) | |
tree | 876b94aee2fe0c69f585c81a5b2cafaba1695d0c /libc | |
parent | e086af1dd0cf82f5b82ab9bc0d3ffb4de6be4da7 (diff) |
stdlib.c: remove comment about _Exit, it is provided in _exit.c
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/stdlib/stdlib.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libc/stdlib/stdlib.c b/libc/stdlib/stdlib.c index d3bdd6c39..734033979 100644 --- a/libc/stdlib/stdlib.c +++ b/libc/stdlib/stdlib.c @@ -667,16 +667,7 @@ unsigned long long attribute_hidden __XL_NPP(_stdlib_strto_ll)(register const Wc #endif /* defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX) */ #endif -/**********************************************************************/ -/* Made _Exit() an alias for _exit(), as per C99. */ -/* #ifdef L__Exit */ -/* void _Exit(int status) */ -/* { */ -/* _exit(status); */ -/* } */ - -/* #endif */ -/**********************************************************************/ + #ifdef L_bsearch void *bsearch(const void *key, const void *base, size_t /* nmemb */ high, |