From d921b2ecc0d294ad4bf8c7458fc52a60c28727d2 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 3 Aug 2006 15:41:12 +0000 Subject: Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.) --- coreutils/uniq.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'coreutils/uniq.c') diff --git a/coreutils/uniq.c b/coreutils/uniq.c index 956c50796..26afc00f4 100644 --- a/coreutils/uniq.c +++ b/coreutils/uniq.c @@ -11,9 +11,6 @@ /* http://www.opengroup.org/onlinepubs/007904975/utilities/uniq.html */ #include "busybox.h" -#include -#include -#include static const char uniq_opts[] = "f:s:" "cdu\0\1\2\4"; @@ -23,7 +20,7 @@ static FILE *xgetoptfile_uniq_s(char **argv, int read0write2) if ((n = *argv) != NULL) { if ((*n != '-') || n[1]) { - return bb_xfopen(n, "r\0w" + read0write2); + return xfopen(n, "r\0w" + read0write2); } } return (read0write2) ? stdout : stdin; @@ -100,7 +97,7 @@ int uniq_main(int argc, char **argv) } } while (s1); - bb_xferror(in, input_filename); + xferror(in, input_filename); bb_fflush_stdout_and_exit(EXIT_SUCCESS); } -- cgit v1.2.3