1#include "threads_impl.h"
2
3// The compiler supports __builtin_* names that just call these.
4
5void* __get_unsafe_stack_start(void) {
6    return __thrd_current()->unsafe_stack.iov_base;
7}
8
9void* __get_unsafe_stack_ptr(void) {
10    return (void*)__thrd_current()->abi.unsafe_sp;
11}
12