move parse_stream out of ENABLE_HUSH_TICK to avoid implicit decl/build error
authorMike Frysinger <vapier@gentoo.org>
Sun, 22 Mar 2009 22:48:41 +0000 (22:48 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sun, 22 Mar 2009 22:48:41 +0000 (22:48 -0000)
shell/hush.c

index 0e43b63e7c32f9660567e6cae7b78d8e2c427f86..6e2ef5df643e1c919cffac6a861e5ef4976c0b4a 100644 (file)
@@ -3363,6 +3363,9 @@ static int redirect_opt_num(o_string *o)
        return num;
 }
 
+static int parse_stream(o_string *dest, struct parse_context *ctx,
+               struct in_str *input0, const char *end_trigger);
+
 #if ENABLE_HUSH_TICK
 static FILE *generate_stream_from_list(struct pipe *head)
 {
@@ -3407,9 +3410,6 @@ static FILE *generate_stream_from_list(struct pipe *head)
        /* 'head' is freed by the caller */
 }
 
-static int parse_stream(o_string *dest, struct parse_context *ctx,
-               struct in_str *input0, const char *end_trigger);
-
 /* Return code is exit status of the process that is run. */
 static int process_command_subs(o_string *dest,
                struct in_str *input,