diff --git a/examples/call-scm-from-c/full.c b/examples/call-scm-from-c/full.c index abd2bcc7..ea542a04 100644 --- a/examples/call-scm-from-c/full.c +++ b/examples/call-scm-from-c/full.c @@ -7,6 +7,13 @@ /** * This variable corresponds to the Scheme function in the generated C file * that we wish to call into. + * + * These names are from the compiled C files but can also be + * generated using icyc: + * + * cyclone> (mangle-global 'signal-done) + * "__glo_signal_91done" + * */ extern object __glo_signal_91done; extern object __glo_sum_91numbers;