From 8fdcfdb4479dff7a993a25a63253f0e749fd99fe Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 3 Sep 2013 17:56:28 -0500 Subject: Introduce libbuf analogous to toybuf but for use by lib/*.c. Change readfile() semantics to be able to read into an existing buffer, or malloc its own if that's NULL. --- toys.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys.h') 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; -- cgit v1.2.3