diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-27 20:26:07 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-27 20:26:07 +0000 |
commit | de149cdbaf9327b5dbb85b1a473fce5c6ec7951f (patch) | |
tree | cc14a903a8e159a33e86e8f15b309abd7fc3e65b /timezone | |
parent | 784d802ea2b7f156f59e86b77d4f17ea9effaaba (diff) | |
download | glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar.gz glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar.bz2 glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.zip |
Make local functions static.
Diffstat (limited to 'timezone')
-rw-r--r-- | timezone/tst-timezone.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/timezone/tst-timezone.c b/timezone/tst-timezone.c index edff458abd..edcdfb805a 100644 --- a/timezone/tst-timezone.c +++ b/timezone/tst-timezone.c @@ -1,6 +1,6 @@ -/* Copyright (C) 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1998. + Contributed by Andreas Jaeger <aj@suse.de>, 1998. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -52,7 +52,7 @@ static const struct test_times tests[] = /* This string will be used for `putenv' calls. */ char envstring[100]; -void +static void print_tzvars (void) { printf ("tzname[0]: %s\n", tzname[0]); @@ -62,7 +62,7 @@ print_tzvars (void) } -void +static void check_tzvars (const char *name, int dayl, int timez, const char *const tznam[]) { int i; |