aboutsummaryrefslogtreecommitdiff
path: root/coreutils/comm.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/comm.c')
-rw-r--r--coreutils/comm.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/coreutils/comm.c b/coreutils/comm.c
index 8b9380175..7524a7b25 100644
--- a/coreutils/comm.c
+++ b/coreutils/comm.c
@@ -7,10 +7,6 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */ 8 */
9 9
10#include <stdio.h>
11#include <stdlib.h>
12#include <string.h>
13#include <unistd.h>
14#include "busybox.h" 10#include "busybox.h"
15 11
16#define COMM_OPT_1 0x01 12#define COMM_OPT_1 0x01
@@ -57,7 +53,7 @@ static void cmp_files(char **infiles)
57 int i; 53 int i;
58 54
59 for (i = 0; i < 2; ++i) { 55 for (i = 0; i < 2; ++i) {
60 streams[i] = ((infiles[i][0] == '=' && infiles[i][1]) ? stdin : bb_xfopen(infiles[i], "r")); 56 streams[i] = ((infiles[i][0] == '=' && infiles[i][1]) ? stdin : xfopen(infiles[i], "r"));
61 fgets(thisline[i], LINE_LEN, streams[i]); 57 fgets(thisline[i], LINE_LEN, streams[i]);
62 } 58 }
63 59