From 3286891ea8d17d271c4c4ab6c1cb499b1cc74eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= Date: Wed, 15 Feb 2017 19:55:48 +0100 Subject: [PATCH] Add missing prototype of debug_breakpoint_remove to include file. --- src/debug.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/debug.h b/src/debug.h index 4a370db..ec6346d 100644 --- a/src/debug.h +++ b/src/debug.h @@ -8,5 +8,7 @@ bool debug_PC_is_breakpoint(rk65c02emu_t *); bool debug_breakpoint_add(rk65c02emu_t *, uint16_t); +bool debug_breakpoint_remove(rk65c02emu_t *, uint16_t); + #endif /* _DEBUG_H_ */