diff options
author | fche <fche@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-04 17:33:54 +0000 |
---|---|---|
committer | fche <fche@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-04 17:33:54 +0000 |
commit | 2e3cd6373e847a2d667a23f56e2b4c8d614ef318 (patch) | |
tree | 57606334dc29196000e1c06229646ad4e857de7d /libmudflap/mf-hooks3.c | |
parent | 9a89afa2ede1c5a88c414f322f5faef1c72cd9fe (diff) | |
download | gcc-2e3cd6373e847a2d667a23f56e2b4c8d614ef318.tar.gz |
2004-10-04 Frank Ch. Eigler <fche@redhat.com>
* configure.ac: Look for more headers & functions.
* mf-hooks2.c (getmntent, inet_ntoa, getproto*): New wrapper functions.
* mf-runtime.h.in: Add new "#pragma redefine_extname"s for them.
* mf-runtime.c (options): Clean up integer signedness warnings.
(main): Add a declaration to fix a warning.
* mf-hooks3.c (pthread_exit): Add not-reached exit() to wrapper.
* configure, config.h.in: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88517 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libmudflap/mf-hooks3.c')
-rw-r--r-- | libmudflap/mf-hooks3.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmudflap/mf-hooks3.c b/libmudflap/mf-hooks3.c index b844ee5c2b5..d315b8224a0 100644 --- a/libmudflap/mf-hooks3.c +++ b/libmudflap/mf-hooks3.c @@ -597,4 +597,5 @@ WRAPPER(void, pthread_exit, void *rc) /* __mf_state = reentrant; */ CALL_REAL (pthread_exit, rc); /* NOTREACHED */ + exit (0); /* Satisfy noreturn attribute of pthread_exit. */ } |