glue.c 536 B

1234567891011121314151617181920212223
  1. /*
  2. * Phony versions of native-code helper routines for use on architectures for
  3. * which we have no native code.
  4. */
  5. long
  6. s48_call_native_procedure(long procedure, long arg_count)
  7. {
  8. return 3; /* indicates failure; see scheme/vm/interp/call.scm */
  9. }
  10. long
  11. s48_invoke_native_continuation(long code_pointer, long protocol_skip)
  12. {
  13. return 3; /* indicates failure; see scheme/vm/interp/call.scm */
  14. }
  15. long
  16. s48_jump_to_native_address(long address, long template)
  17. {
  18. return 3; /* indicates failure; see scheme/vm/interp/call.scm */
  19. }