diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-08-10 21:11:56 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-08-10 21:11:56 +0000 |
commit | df353600fe296f6e694ed9edc7fd7bebf802c7f0 (patch) | |
tree | 91ead6092e36064c25f3a7fdcb2ace228773583f | |
parent | 7ca248d5c810513207073314b4d296d4bf5ed4d9 (diff) | |
download | busybox-w32-df353600fe296f6e694ed9edc7fd7bebf802c7f0.tar.gz busybox-w32-df353600fe296f6e694ed9edc7fd7bebf802c7f0.tar.bz2 busybox-w32-df353600fe296f6e694ed9edc7fd7bebf802c7f0.zip |
Fix a merging error
git-svn-id: svn://busybox.net/trunk/busybox@3248 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | ash.c | 3 | ||||
-rw-r--r-- | shell/ash.c | 3 |
2 files changed, 2 insertions, 4 deletions
@@ -686,7 +686,6 @@ static void out2fmt (const char *, ...) | |||
686 | static int xwrite (int, const char *, int); | 686 | static int xwrite (int, const char *, int); |
687 | 687 | ||
688 | #define outstr(p,file) fputs(p, file) | 688 | #define outstr(p,file) fputs(p, file) |
689 | static void outstr (const char *p, FILE *file) { fputs(p, file); } | ||
690 | static void out1str(const char *p) { outstr(p, stdout); } | 689 | static void out1str(const char *p) { outstr(p, stdout); } |
691 | static void out2str(const char *p) { outstr(p, stderr); } | 690 | static void out2str(const char *p) { outstr(p, stderr); } |
692 | 691 | ||
@@ -12670,7 +12669,7 @@ findvar(struct var **vpp, const char *name) | |||
12670 | /* | 12669 | /* |
12671 | * Copyright (c) 1999 Herbert Xu <herbert@debian.org> | 12670 | * Copyright (c) 1999 Herbert Xu <herbert@debian.org> |
12672 | * This file contains code for the times builtin. | 12671 | * This file contains code for the times builtin. |
12673 | * $Id: ash.c,v 1.20 2001/08/10 19:36:07 mjn3 Exp $ | 12672 | * $Id: ash.c,v 1.21 2001/08/10 21:11:56 andersen Exp $ |
12674 | */ | 12673 | */ |
12675 | static int timescmd (int argc, char **argv) | 12674 | static int timescmd (int argc, char **argv) |
12676 | { | 12675 | { |
diff --git a/shell/ash.c b/shell/ash.c index bbde91cd1..417ef5d13 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -686,7 +686,6 @@ static void out2fmt (const char *, ...) | |||
686 | static int xwrite (int, const char *, int); | 686 | static int xwrite (int, const char *, int); |
687 | 687 | ||
688 | #define outstr(p,file) fputs(p, file) | 688 | #define outstr(p,file) fputs(p, file) |
689 | static void outstr (const char *p, FILE *file) { fputs(p, file); } | ||
690 | static void out1str(const char *p) { outstr(p, stdout); } | 689 | static void out1str(const char *p) { outstr(p, stdout); } |
691 | static void out2str(const char *p) { outstr(p, stderr); } | 690 | static void out2str(const char *p) { outstr(p, stderr); } |
692 | 691 | ||
@@ -12670,7 +12669,7 @@ findvar(struct var **vpp, const char *name) | |||
12670 | /* | 12669 | /* |
12671 | * Copyright (c) 1999 Herbert Xu <herbert@debian.org> | 12670 | * Copyright (c) 1999 Herbert Xu <herbert@debian.org> |
12672 | * This file contains code for the times builtin. | 12671 | * This file contains code for the times builtin. |
12673 | * $Id: ash.c,v 1.20 2001/08/10 19:36:07 mjn3 Exp $ | 12672 | * $Id: ash.c,v 1.21 2001/08/10 21:11:56 andersen Exp $ |
12674 | */ | 12673 | */ |
12675 | static int timescmd (int argc, char **argv) | 12674 | static int timescmd (int argc, char **argv) |
12676 | { | 12675 | { |