summaryrefslogtreecommitdiffhomepage
path: root/tests/example.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-13 23:48:47 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-13 23:48:47 +0200
commite1ffe04db570e63bd3c855fc4361ed8de6b5f435 (patch)
treef0a52f092a0af8a51fe4fe46709757b1702bd27d /tests/example.cc
parent2be9a150bb742987330c6de4dac23d4d2efb1ebe (diff)
feat(LibDebugger): expand KDBG's protocol, by reworking the packet
structure. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'tests/example.cc')
-rw-r--r--tests/example.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/example.cc b/tests/example.cc
index 83e664a..2e2a364 100644
--- a/tests/example.cc
+++ b/tests/example.cc
@@ -1,4 +1,4 @@
-#define AppMain int __ImageStart
+#define AppMain __ImageStart
#warning TestCase #1
int bar() {
@@ -11,6 +11,6 @@ int foo() {
return bar();
}
-AppMain() {
+int AppMain() {
return foo();
}