diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-05 08:17:58 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-05 08:17:58 +0000 |
commit | cf3141a59dc73a8082a701c8f16842adab4ab09a (patch) | |
tree | 28baa08ec26885a2f67ceb400f16812d54f8570f /stdio-common | |
parent | d6f1fe47aa10f51e7c630904e3605d0d04b43b42 (diff) | |
download | glibc-cf3141a59dc73a8082a701c8f16842adab4ab09a.zip glibc-cf3141a59dc73a8082a701c8f16842adab4ab09a.tar.gz glibc-cf3141a59dc73a8082a701c8f16842adab4ab09a.tar.bz2 |
Update.
2000-12-05 Andreas Jaeger <aj@suse.de>
* nss/test-netdb.c: Mark local functions as static to avoid
warnings.
(main): Use return to silence warning.
* stdlib/test-canon.c (check_path): Mark as static to avoid warning.
* stdio-common/test-popen.c: Mark local functions as static to
avoid warnings.
(main): Use return to silence warning.
* stdlib/testsort.c (compare): Mark as static to avoid warning.
* assert/test-assert.c: Mark local functions as static to avoid
warnings.
* assert/test-assert-perr.c: Likewise.
* math/libm-test.inc (main): Use return to silence warnings.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/test-popen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdio-common/test-popen.c b/stdio-common/test-popen.c index aced45d..5947e93 100644 --- a/stdio-common/test-popen.c +++ b/stdio-common/test-popen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 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 @@ -20,7 +20,7 @@ #include <stdio.h> #include <stdlib.h> -void +static void write_data (FILE *stream) { int i; @@ -33,7 +33,7 @@ write_data (FILE *stream) } } -void +static void read_data (FILE *stream) { int i, j; @@ -99,5 +99,5 @@ main (void) } puts (wstatus | rstatus ? "Test FAILED!" : "Test succeeded."); - exit (wstatus | rstatus); + return (wstatus | rstatus); } |