diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-31 10:52:32 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-31 10:52:32 +0000 |
commit | bf4de8f3675839e9a6b2b20c1f4a319ad75810c9 (patch) | |
tree | acae60e93e6e3c811cf5e0ebfd87c7aa91dffbbe /string | |
parent | 41b64fc4c1d8922e92e80abd3354a50b0ecfeb8a (diff) | |
download | glibc-bf4de8f3675839e9a6b2b20c1f4a319ad75810c9.zip glibc-bf4de8f3675839e9a6b2b20c1f4a319ad75810c9.tar.gz glibc-bf4de8f3675839e9a6b2b20c1f4a319ad75810c9.tar.bz2 |
* malloc/memusagestat.c (main): Use return instead of exit to
avoid warning.
* io/pwd.c (main): Likewise.
* iconvdata/tst-table-from.c (main): Likewise.
* ctype/test_ctype.c (main): Likewise.
* setjmp/tst-setjmp.c (main): Likewise.
* signal/tst-signal.c (main): Likewise.
* stdlib/tst-strtol.c (main): Likewise.
* stdlib/tst-strtod.c (main): Likewise.
* stdlib/tst-strtoll.c (main): Likewise.
* stdlib/tst-xpg-basename.c (main): Likewise.
* dirent/tst-seekdir.c (main): Likewise.
* grp/testgrp.c (main): Likewise.
* inet/test_ifindex.c (main): Likewise.
* io/test-utime.c (main): Likewise.
* posix/test-vfork.c (main): Likewise.
* posix/testfnm.c (main): Likewise.
* stdio-common/temptest.c (main): Likewise.
* stdio-common/test_rdwr.c (main): Likewise.
* stdio-common/tst-fileno.c (main): Likewise.
* stdio-common/tst-sscanf.c (main): Likewise.
* stdio-common/tstscanf.c (main): Likewise.
* string/bug-strncat1.c (main): Likewise.
* string/bug-strpbrk1.c (main): Likewise.
* string/bug-strspn1.c (main): Likewise.
* string/test-ffs.c (main): Likewise.
* string/tst-inlcall.c (main): Likewise.
* string/tst-svc.c (main): Likewise.
* timezone/test-tz.c (main): Likewise.
* wctype/test_wcfuncs.c (main): Likewise.
* wctype/test_wctype.c (main): Likewise.
* stdlib/tst-random.c: Add attribute noreturn to fail.
Diffstat (limited to 'string')
-rw-r--r-- | string/bug-strncat1.c | 2 | ||||
-rw-r--r-- | string/bug-strpbrk1.c | 4 | ||||
-rw-r--r-- | string/bug-strspn1.c | 4 | ||||
-rw-r--r-- | string/test-ffs.c | 4 | ||||
-rw-r--r-- | string/tst-inlcall.c | 6 | ||||
-rw-r--r-- | string/tst-svc.c | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/string/bug-strncat1.c b/string/bug-strncat1.c index 3491aa7..f1b5c37 100644 --- a/string/bug-strncat1.c +++ b/string/bug-strncat1.c @@ -27,5 +27,5 @@ main (void) exit (1); } - exit (0); + return 0; } diff --git a/string/bug-strpbrk1.c b/string/bug-strpbrk1.c index 3fdc930..28238b0 100644 --- a/string/bug-strpbrk1.c +++ b/string/bug-strpbrk1.c @@ -13,7 +13,7 @@ main (void) strpbrk (b++, ""); if (b != a + 1) - exit (1); + return 1; - exit (0); + return 0; } diff --git a/string/bug-strspn1.c b/string/bug-strspn1.c index f637b97..a657baf 100644 --- a/string/bug-strspn1.c +++ b/string/bug-strspn1.c @@ -13,7 +13,7 @@ main (void) strspn (b++, ""); if (b != a + 1) - exit (1); + return 1; - exit (0); + return 0; } diff --git a/string/test-ffs.c b/string/test-ffs.c index 8d46d4e..9bc0796 100644 --- a/string/test-ffs.c +++ b/string/test-ffs.c @@ -29,7 +29,7 @@ main (void) int i; auto void try (int value, int expected); - + void try (int value, int expected) { if (ffs (value) != expected) @@ -52,5 +52,5 @@ main (void) else puts ("Test succeeded."); - exit (failures); + return failures; } diff --git a/string/tst-inlcall.c b/string/tst-inlcall.c index 1e39ee4..3557bff 100644 --- a/string/tst-inlcall.c +++ b/string/tst-inlcall.c @@ -1,5 +1,5 @@ /* Tester for calling inline string functions. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -40,7 +40,7 @@ main (void) char buf1[1000]; char *cp; char ch; - + cp = strcpy (buf1, "hello world"); if (strcmp ("hello world", cp++) != 0) { @@ -72,5 +72,5 @@ main (void) status = EXIT_FAILURE; printf ("%d errors.\n", errors); } - exit (status); + return status; } diff --git a/string/tst-svc.c b/string/tst-svc.c index 30a161e..1ee5342 100644 --- a/string/tst-svc.c +++ b/string/tst-svc.c @@ -41,5 +41,5 @@ main (int argc, char *argv[]) for (i = 0; i < count; ++i) puts (str[i]); - exit (EXIT_SUCCESS); + return EXIT_SUCCESS; } |