control.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* Copyright 2010-2013,2018
  2. Free Software Foundation, Inc.
  3. This file is part of Guile.
  4. Guile is free software: you can redistribute it and/or modify it
  5. under the terms of the GNU Lesser General Public License as published
  6. by the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. Guile is distributed in the hope that it will be useful, but WITHOUT
  9. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with Guile. If not, see
  14. <https://www.gnu.org/licenses/>. */
  15. #ifndef SCM_CONTROL_H
  16. #define SCM_CONTROL_H
  17. #include "libguile/scm.h"
  18. SCM_INTERNAL SCM scm_i_prompt_pop_abort_args_x (struct scm_vm *vp,
  19. ptrdiff_t saved_stack_depth);
  20. SCM_INTERNAL SCM scm_i_make_composable_continuation (SCM vmcont);
  21. SCM_INTERNAL SCM scm_abort_to_prompt_star (SCM tag, SCM args) SCM_NORETURN;
  22. SCM_INTERNAL void scm_init_control (void);
  23. #endif /* SCM_CONTROL_H */