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 /time | |
parent | 784d802ea2b7f156f59e86b77d4f17ea9effaaba (diff) | |
download | glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.zip glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar.gz glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar.bz2 |
Make local functions static.
Diffstat (limited to 'time')
-rw-r--r-- | time/clocktest.c | 2 | ||||
-rw-r--r-- | time/tst-getdate.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/time/clocktest.c b/time/clocktest.c index cd5fd51..f2b3ea7 100644 --- a/time/clocktest.c +++ b/time/clocktest.c @@ -6,7 +6,7 @@ volatile int gotit = 0; -void +static void alarm_handler (int signal) { gotit = 1; diff --git a/time/tst-getdate.c b/time/tst-getdate.c index d5824f6..770c8b2 100644 --- a/time/tst-getdate.c +++ b/time/tst-getdate.c @@ -35,7 +35,7 @@ static const struct {"16:30:46 2000-2-29", 0, {46, 30,16, 29, 1, 100, 0, 0, 0}} }; -void +static void report_date_error (int err) { switch(err) |