about summary refs log tree commit diff
path: root/string/tst-inlcall.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-12-31 10:52:32 +0000
committerAndreas Jaeger <aj@suse.de>2000-12-31 10:52:32 +0000
commitbf4de8f3675839e9a6b2b20c1f4a319ad75810c9 (patch)
treeacae60e93e6e3c811cf5e0ebfd87c7aa91dffbbe /string/tst-inlcall.c
parent41b64fc4c1d8922e92e80abd3354a50b0ecfeb8a (diff)
downloadglibc-bf4de8f3675839e9a6b2b20c1f4a319ad75810c9.tar.gz
glibc-bf4de8f3675839e9a6b2b20c1f4a319ad75810c9.tar.xz
glibc-bf4de8f3675839e9a6b2b20c1f4a319ad75810c9.zip
* 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/tst-inlcall.c')
-rw-r--r--string/tst-inlcall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/string/tst-inlcall.c b/string/tst-inlcall.c
index 1e39ee4870..3557bff84f 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;
 }