From 08b8d916b5887267ef963fd711f1e65b7d8378ac Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 13 Oct 2010 22:18:03 +0000 Subject: In the spirit of r90111, depend on c89 and remove the "STATIC" macro and its usage. --- bin/sh/redir.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/sh/redir.c') diff --git a/bin/sh/redir.c b/bin/sh/redir.c index e83fcaf..f3ad3af 100644 --- a/bin/sh/redir.c +++ b/bin/sh/redir.c @@ -83,8 +83,8 @@ MKINIT struct redirtab *redirlist; */ static int fd0_redirected = 0; -STATIC void openredirect(union node *, char[10 ]); -STATIC int openhere(union node *); +static void openredirect(union node *, char[10 ]); +static int openhere(union node *); /* @@ -148,7 +148,7 @@ redirect(union node *redir, int flags) } -STATIC void +static void openredirect(union node *redir, char memory[10]) { struct stat sb; @@ -240,7 +240,7 @@ movefd: * the pipe without forking. */ -STATIC int +static int openhere(union node *redir) { int pip[2]; -- cgit v1.1