diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/gdbjit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/gdbjit.h b/src/include/gdbjit.h index 40f1ad58..f8cb9714 100644 --- a/src/include/gdbjit.h +++ b/src/include/gdbjit.h @@ -21,12 +21,14 @@ typedef struct gdbjit_block_s { void GdbJITNewBlock(gdbjit_block_t* block, GDB_CORE_ADDR start, GDB_CORE_ADDR end, uintptr_t x64start); gdbjit_block_t* GdbJITBlockAddLine(gdbjit_block_t* block, GDB_CORE_ADDR addr, const char* line); void GdbJITBlockReady(gdbjit_block_t* block); +void GdbJITBlockCleanup(gdbjit_block_t* block); #else #define GdbJITNewBlock(a, b, c, d) #define GdbJITBlockAddLine(a, b, c) NULL #define GdbJITBlockReady(a) +#define GdbJITBlockCleanup(a) #endif |