aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-11-11 12:57:31 -0500
committerUlrich Drepper <drepper@gmail.com>2011-11-11 12:57:31 -0500
commit57769839788e2c62b68d9dfbf4b35052321278ba (patch)
tree4690dacc53338fd4877a794eaf7eb0a2c6a95580 /stdlib
parent4b19cd7aef8511714947e658077c85f51c29ef65 (diff)
downloadglibc-57769839788e2c62b68d9dfbf4b35052321278ba.zip
glibc-57769839788e2c62b68d9dfbf4b35052321278ba.tar.gz
glibc-57769839788e2c62b68d9dfbf4b35052321278ba.tar.bz2
makecontext doens't need __THROWNL
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/ucontext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/ucontext.h b/stdlib/ucontext.h
index 498fb56..abeb647 100644
--- a/stdlib/ucontext.h
+++ b/stdlib/ucontext.h
@@ -46,7 +46,7 @@ extern int swapcontext (ucontext_t *__restrict __oucp,
We cannot say anything about the parameters FUNC takes; `void'
is as good as any other choice. */
extern void makecontext (ucontext_t *__ucp, void (*__func) (void),
- int __argc, ...) __THROWNL;
+ int __argc, ...) __THROW;
__END_DECLS