aboutsummaryrefslogtreecommitdiff
path: root/toys.h
diff options
context:
space:
mode:
Diffstat (limited to 'toys.h')
-rw-r--r--toys.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys.h b/toys.h
index c810123a..b7acc270 100644
--- a/toys.h
+++ b/toys.h
@@ -113,9 +113,9 @@ extern struct toy_context {
jmp_buf *rebound; // longjmp here instead of exit when do_rebound set
} toys;
-// One big temporary buffer, for use by commands (not library functions).
+// Two big temporary buffers: one for use by commands, one for library functions
-extern char toybuf[4096];
+extern char toybuf[4096], libbuf[4096];
extern char **environ;