setjmp.h 328 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) mlibc & plct lab
  3. *
  4. * SPDX-License-Identifier: MIT
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2024/5/6 0Bitbiscuits the first version
  9. */
  10. #ifndef MLIBC_SETJMP_H__
  11. #define MLIBC_SETJMP_H__
  12. #define jmp_buf_t long *
  13. int setjmp(jmp_buf_t env);
  14. void longjmp(jmp_buf_t env, int val);
  15. #endif