diff options
author | Jim Meyering <jim@meyering.net> | 2002-12-18 08:54:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-12-18 08:54:01 +0000 |
commit | 302165d6028d7a0458a6bb7a697020f6cc0d492d (patch) | |
tree | c156b9117ab66eb2d9c585941623b13a469afd10 /src | |
parent | 7d299066904e60b669ee3e7d0bde7689c9a91b3f (diff) | |
download | coreutils-302165d6028d7a0458a6bb7a697020f6cc0d492d.tar.xz |
(valid_options): Declare to be static.
Diffstat (limited to 'src')
-rw-r--r-- | src/stty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stty.c b/src/stty.c index fa1078d15..3ec6d3327 100644 --- a/src/stty.c +++ b/src/stty.c @@ -711,7 +711,7 @@ settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n\ } /* Return 1 if the string contains only valid options. */ -int +static int valid_options (char *opt, const char *valid_opts, const char *valid_arg_opts) { |