[Lldb-commits] [lldb] [lldb] Add missing include to breakpoint/main.cpp (PR #201804)

Nikolas Klauser via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 5 03:42:34 PDT 2026


https://github.com/philnik777 created https://github.com/llvm/llvm-project/pull/201804

None

>From 47550981b85ca2c0761187119e9bd63431af0e13 Mon Sep 17 00:00:00 2001
From: Nikolas Klauser <nikolasklauser at berlin.de>
Date: Fri, 5 Jun 2026 12:42:13 +0200
Subject: [PATCH] [lldb] Add missing include to breakpoint/main.cpp

---
 lldb/test/API/tools/lldb-dap/breakpoint/main.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lldb/test/API/tools/lldb-dap/breakpoint/main.cpp b/lldb/test/API/tools/lldb-dap/breakpoint/main.cpp
index 2206b07f19494..9788223d9d9b1 100644
--- a/lldb/test/API/tools/lldb-dap/breakpoint/main.cpp
+++ b/lldb/test/API/tools/lldb-dap/breakpoint/main.cpp
@@ -1,6 +1,7 @@
 #include <dlfcn.h>
 #include <stdexcept>
 #include <stdio.h>
+#include <stdlib.h>
 
 int twelve(int i) {
   return 12 + i; // break 12



More information about the lldb-commits mailing list