summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib.c b/lib.c
index fdf5758e..a605a556 100644
--- a/lib.c
+++ b/lib.c
@@ -3228,3 +3228,13 @@ void d(val obj)
{
dump(obj, std_output);
}
+
+/*
+ * Function for software breakpoints.
+ * Debugging routines call here when a breakpoint
+ * is requested. For this to work, set a breakpoint
+ * on this function.
+ */
+void breakpt(void)
+{
+}