From a650f41daf6aab08c59ccd97cddd226773423f73 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 1 Feb 2021 21:56:18 -0500 Subject: [PATCH] Not always an explicit continuation arg --- docs/C-Calling-Conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/C-Calling-Conventions.md b/docs/C-Calling-Conventions.md index 961da6dc..38a50170 100644 --- a/docs/C-Calling-Conventions.md +++ b/docs/C-Calling-Conventions.md @@ -79,7 +79,7 @@ Note our `define-c` FFI requires the user to specify the same calling convention We want a signature similar to this: - static void __lambda(void *data, object closure, object k, int argc, object *args) ; + static void __lambda(void *data, object closure, int argc, object *args) ; That way we can pack all the extra arguments into `args` and call all functions using a single standard interface.