diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-26 23:21:47 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-26 23:21:47 +0000 |
commit | 6dc3a21627db11fa0f374afe29a6bbf4f89c8b64 (patch) | |
tree | 79166b700c497fbe798b6031e5bbff97e0933573 /coreutils/sort.c | |
parent | 076d919b597733c0adf653d0ad10073be4adec7f (diff) | |
download | busybox-w32-6dc3a21627db11fa0f374afe29a6bbf4f89c8b64.tar.gz busybox-w32-6dc3a21627db11fa0f374afe29a6bbf4f89c8b64.tar.bz2 busybox-w32-6dc3a21627db11fa0f374afe29a6bbf4f89c8b64.zip |
remove bb_printf and the like
git-svn-id: svn://busybox.net/trunk/busybox@16446 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/sort.c')
-rw-r--r-- | coreutils/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index c23c14226..972477bab 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c | |||
@@ -318,5 +318,5 @@ int sort_main(int argc, char **argv) | |||
318 | /* Print it */ | 318 | /* Print it */ |
319 | if(!outfile) outfile=stdout; | 319 | if(!outfile) outfile=stdout; |
320 | for(i=0;i<linecount;i++) fprintf(outfile,"%s\n",lines[i]); | 320 | for(i=0;i<linecount;i++) fprintf(outfile,"%s\n",lines[i]); |
321 | bb_fflush_stdout_and_exit(EXIT_SUCCESS); | 321 | fflush_stdout_and_exit(EXIT_SUCCESS); |
322 | } | 322 | } |