diff options
author | Jim Meyering <jim@meyering.net> | 2004-04-17 14:05:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-04-17 14:05:37 +0000 |
commit | 58127401f10d7d2e437ecea49d383fd10ace1ecb (patch) | |
tree | e66d46b349b6f3b10a8cf751d81c05c31ddf89c6 | |
parent | 6156733950c91302e7deef47b3094b8e4ea85018 (diff) | |
download | coreutils-58127401f10d7d2e437ecea49d383fd10ace1ecb.tar.xz |
(add_file_name): Declare function to be `static'.
-rw-r--r-- | src/join.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/join.c b/src/join.c index 5fa140545..a804e5943 100644 --- a/src/join.c +++ b/src/join.c @@ -731,7 +731,7 @@ add_field_list (char *str) /* Add NAME to the array of input file NAMES; currently there are *NFILES names in the list. */ -void +static void add_file_name (char const *name, char const *names[2], int *nfiles) { if (*nfiles == 2) |