dwarf-assembly/shared/context_struct.h
Théophile Bastian 353a97c49d Refactor code generation: use shared/context_struct.h
This allows #include'ing `context_struct.h` in the stack walker
implementation as well
2018-04-25 18:11:59 +02:00

6 lines
87 B
C

#include <stdint.h>
typedef struct {
uintptr_t rip, rsp, rbp;
} unwind_context_t;