runtime: stub out Breakpoint() function

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2023-12-08 14:27:06 +01:00
committed by Ron Evans
parent e14b6a7009
commit b58b7c59ae
+5
View File
@@ -18,3 +18,8 @@ func NumCgoCall() int {
func NumGoroutine() int {
return 1
}
// Stub for Breakpoint, does not do anything.
func Breakpoint() {
panic("Breakpoint not supported")
}