From c32032757e286243a3ad60150d7e8b84a6db1b78 Mon Sep 17 00:00:00 2001 From: David Adam Date: Wed, 22 Mar 2017 19:43:13 +0800 Subject: [PATCH] builtin.cpp: update template builtin function --- src/builtin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin.cpp b/src/builtin.cpp index c2cf31931..e3815ba2f 100644 --- a/src/builtin.cpp +++ b/src/builtin.cpp @@ -4,7 +4,7 @@ // // 1). Create a function in builtin.c with the following signature: // -// static int builtin_NAME( parser_t &parser, wchar_t ** args ) +// static int builtin_NAME(parser_t &parser, io_streams_t &streams, wchar_t **argv) // // where NAME is the name of the builtin, and args is a zero-terminated list of arguments. //