diff options
Diffstat (limited to 'stdio-common/test_rdwr.c')
-rw-r--r-- | stdio-common/test_rdwr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/test_rdwr.c b/stdio-common/test_rdwr.c index a3b01b7c7c..477069bb5a 100644 --- a/stdio-common/test_rdwr.c +++ b/stdio-common/test_rdwr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991,1992,1996,1997,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 @@ -125,5 +125,5 @@ main (int argc, char **argv) puts ("Test succeeded."); } - exit (lose ? EXIT_FAILURE : EXIT_SUCCESS); + return lose ? EXIT_FAILURE : EXIT_SUCCESS; } |