aboutsummaryrefslogtreecommitdiff
path: root/libmudflap/mf-hooks3.c
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@redhat.com>2004-10-04 17:33:54 +0000
committerFrank Ch. Eigler <fche@gcc.gnu.org>2004-10-04 17:33:54 +0000
commit07c2f075fc06014700d6bea35c634fc5e1ca09ce (patch)
tree57606334dc29196000e1c06229646ad4e857de7d /libmudflap/mf-hooks3.c
parent8f920ef7f2d9abbc818cff50621155d03eea6c73 (diff)
downloadgcc-07c2f075fc06014700d6bea35c634fc5e1ca09ce.zip
gcc-07c2f075fc06014700d6bea35c634fc5e1ca09ce.tar.gz
gcc-07c2f075fc06014700d6bea35c634fc5e1ca09ce.tar.bz2
configure.ac: Look for more headers & functions.
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. From-SVN: r88517
Diffstat (limited to 'libmudflap/mf-hooks3.c')
-rw-r--r--libmudflap/mf-hooks3.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libmudflap/mf-hooks3.c b/libmudflap/mf-hooks3.c
index b844ee5..d315b82 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. */
}