aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ash.c4
-rw-r--r--shell/ash.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/ash.c b/ash.c
index 1d597a66f..91b6241c6 100644
--- a/ash.c
+++ b/ash.c
@@ -687,7 +687,7 @@ static void out2fmt (const char *, ...)
687 __attribute__((__format__(__printf__,1,2))); 687 __attribute__((__format__(__printf__,1,2)));
688static int xwrite (int, const char *, int); 688static int xwrite (int, const char *, int);
689 689
690static void outstr (const char *p, FILE *file) { fputs(p, file); } 690#define outstr(p,file) fputs(p, file)
691static void out1str(const char *p) { outstr(p, stdout); } 691static void out1str(const char *p) { outstr(p, stdout); }
692static void out2str(const char *p) { outstr(p, stderr); } 692static void out2str(const char *p) { outstr(p, stderr); }
693 693
@@ -12785,7 +12785,7 @@ findvar(struct var **vpp, const char *name)
12785/* 12785/*
12786 * Copyright (c) 1999 Herbert Xu <herbert@debian.org> 12786 * Copyright (c) 1999 Herbert Xu <herbert@debian.org>
12787 * This file contains code for the times builtin. 12787 * This file contains code for the times builtin.
12788 * $Id: ash.c,v 1.18 2001/08/10 15:22:35 andersen Exp $ 12788 * $Id: ash.c,v 1.19 2001/08/10 18:42:04 andersen Exp $
12789 */ 12789 */
12790static int timescmd (int argc, char **argv) 12790static int timescmd (int argc, char **argv)
12791{ 12791{
diff --git a/shell/ash.c b/shell/ash.c
index 1d597a66f..91b6241c6 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -687,7 +687,7 @@ static void out2fmt (const char *, ...)
687 __attribute__((__format__(__printf__,1,2))); 687 __attribute__((__format__(__printf__,1,2)));
688static int xwrite (int, const char *, int); 688static int xwrite (int, const char *, int);
689 689
690static void outstr (const char *p, FILE *file) { fputs(p, file); } 690#define outstr(p,file) fputs(p, file)
691static void out1str(const char *p) { outstr(p, stdout); } 691static void out1str(const char *p) { outstr(p, stdout); }
692static void out2str(const char *p) { outstr(p, stderr); } 692static void out2str(const char *p) { outstr(p, stderr); }
693 693
@@ -12785,7 +12785,7 @@ findvar(struct var **vpp, const char *name)
12785/* 12785/*
12786 * Copyright (c) 1999 Herbert Xu <herbert@debian.org> 12786 * Copyright (c) 1999 Herbert Xu <herbert@debian.org>
12787 * This file contains code for the times builtin. 12787 * This file contains code for the times builtin.
12788 * $Id: ash.c,v 1.18 2001/08/10 15:22:35 andersen Exp $ 12788 * $Id: ash.c,v 1.19 2001/08/10 18:42:04 andersen Exp $
12789 */ 12789 */
12790static int timescmd (int argc, char **argv) 12790static int timescmd (int argc, char **argv)
12791{ 12791{