diff options
Diffstat (limited to 'coreutils/split.c')
-rw-r--r-- | coreutils/split.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coreutils/split.c b/coreutils/split.c index b2da74e27..e67c3de66 100644 --- a/coreutils/split.c +++ b/coreutils/split.c | |||
@@ -79,6 +79,8 @@ int split_main(int argc UNUSED_PARAM, char **argv) | |||
79 | ssize_t bytes_read, to_write; | 79 | ssize_t bytes_read, to_write; |
80 | char *src; | 80 | char *src; |
81 | 81 | ||
82 | setup_common_bufsiz(); | ||
83 | |||
82 | opt_complementary = "?2:a+"; /* max 2 args; -a N */ | 84 | opt_complementary = "?2:a+"; /* max 2 args; -a N */ |
83 | opt = getopt32(argv, "l:b:a:", &count_p, &count_p, &suffix_len); | 85 | opt = getopt32(argv, "l:b:a:", &count_p, &count_p, &suffix_len); |
84 | 86 | ||