From 953b23aad3577bcf47b0962ebb286b655add58ba Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 12 Dec 2019 22:02:35 -0600 Subject: Next round of toysh work, with associated lib plumbing. --- lib/lib.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/lib.h') diff --git a/lib/lib.h b/lib/lib.h index 8f949096..5ec648c8 100644 --- a/lib/lib.h +++ b/lib/lib.h @@ -134,6 +134,7 @@ void xputs(char *s); void xputc(char c); void xflush(int flush); void xexec(char **argv); +pid_t xpopen_setup(char **argv, int *pipes, void (*callback)(void)); pid_t xpopen_both(char **argv, int *pipes); int xwaitpid(pid_t pid); int xpclose_both(pid_t pid, int *pipes); -- cgit v1.2.3