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 /stdio-common | |
parent | 784d802ea2b7f156f59e86b77d4f17ea9effaaba (diff) | |
download | glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar.gz glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.tar.xz glibc-de149cdbaf9327b5dbb85b1a473fce5c6ec7951f.zip |
Make local functions static.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/tfformat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdio-common/tfformat.c b/stdio-common/tfformat.c index 41432b2a92..8e138a2ada 100644 --- a/stdio-common/tfformat.c +++ b/stdio-common/tfformat.c @@ -4023,7 +4023,8 @@ sprint_double_type sprint_doubles[] = int required_precision = 13; #if defined(__STDC__) || defined(__cplusplus) -int matches(register char *result, register const char *desired) +static int +matches (register char *result, register const char *desired) #else int matches(result, desired) register char *result; register const char *desired; |