svn commit: [25787] trunk/busybox/shell

vapier at busybox.net vapier at busybox.net
Sun Mar 22 22:48:42 UTC 2009


Author: vapier
Date: 2009-03-22 22:48:41 +0000 (Sun, 22 Mar 2009)
New Revision: 25787

Log:
move parse_stream out of ENABLE_HUSH_TICK to avoid implicit decl/build error

Modified:
   trunk/busybox/shell/hush.c


Changeset:
Modified: trunk/busybox/shell/hush.c
===================================================================
--- trunk/busybox/shell/hush.c	2009-03-22 19:00:05 UTC (rev 25786)
+++ trunk/busybox/shell/hush.c	2009-03-22 22:48:41 UTC (rev 25787)
@@ -3363,6 +3363,9 @@
 	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 @@
 	/* '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,



More information about the busybox-cvs mailing list