aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/tst-random.c2
-rw-r--r--stdlib/tst-strtod.c2
-rw-r--r--stdlib/tst-strtol.c2
-rw-r--r--stdlib/tst-strtoll.c2
-rw-r--r--stdlib/tst-xpg-basename.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/tst-random.c b/stdlib/tst-random.c
index 3453d794c4..2cc8e9c60c 100644
--- a/stdlib/tst-random.c
+++ b/stdlib/tst-random.c
@@ -44,7 +44,7 @@ const int nseq = 3; /* number of test sequences */
const int nrnd = 50; /* length of each test sequence */
const unsigned int seed[3] = { 0x12344321U, 0xEE11DD22U, 0xFEDCBA98 };
-void fail (const char *msg, int s, int i);
+void fail (const char *msg, int s, int i) __attribute__ ((__noreturn__));
int
main (void)
diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c
index ffd3975020..01c454261f 100644
--- a/stdlib/tst-strtod.c
+++ b/stdlib/tst-strtod.c
@@ -117,7 +117,7 @@ main (int argc, char ** argv)
status |= long_dbl ();
- exit (status ? EXIT_FAILURE : EXIT_SUCCESS);
+ return status ? EXIT_FAILURE : EXIT_SUCCESS;
}
static void
diff --git a/stdlib/tst-strtol.c b/stdlib/tst-strtol.c
index ae8fdd4905..db065d6f0a 100644
--- a/stdlib/tst-strtol.c
+++ b/stdlib/tst-strtol.c
@@ -169,7 +169,7 @@ main (void)
}
}
- exit (status ? EXIT_FAILURE : EXIT_SUCCESS);
+ return status ? EXIT_FAILURE : EXIT_SUCCESS;
}
static void
diff --git a/stdlib/tst-strtoll.c b/stdlib/tst-strtoll.c
index 1cc72823b6..9007488d80 100644
--- a/stdlib/tst-strtoll.c
+++ b/stdlib/tst-strtoll.c
@@ -157,7 +157,7 @@ main (void)
}
}
- exit (status ? EXIT_FAILURE : EXIT_SUCCESS);
+ return status ? EXIT_FAILURE : EXIT_SUCCESS;
}
static void
diff --git a/stdlib/tst-xpg-basename.c b/stdlib/tst-xpg-basename.c
index 12067e702d..8e2d965394 100644
--- a/stdlib/tst-xpg-basename.c
+++ b/stdlib/tst-xpg-basename.c
@@ -63,5 +63,5 @@ main (void)
}
}
- exit (errors);
+ return errors;
}