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.) --- miscutils/mt.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'miscutils/mt.c') diff --git a/miscutils/mt.c b/miscutils/mt.c index 2720f7eab..f562a91a2 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c @@ -4,11 +4,7 @@ */ #include "busybox.h" -#include -#include -#include #include -#include struct mt_opcodes { char *name; @@ -105,7 +101,7 @@ int mt_main(int argc, char **argv) break; } - fd = bb_xopen3(file, mode, 0); + fd = xopen3(file, mode, 0); switch (code->value) { case MTTELL: -- cgit v1.2.3