;;; Calling a scheme function from C using a closure and C_callback ;;; rather than define-external ;; May also be advisable to call C_callback_adjust_stack_limits (?) (define (foo x) (print "In foo"); (+ 1 x)) (define c:call-procedure (foreign-safe-lambda* scheme-object ((scheme-object proc) (scheme-object x)) #<