userspace: Implement kill utility

This commit is contained in:
2025-11-04 19:19:46 +02:00
parent acd792d8b4
commit c6ef4b5840
3 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
set(SOURCES
main.cpp
)
add_executable(kill ${SOURCES})
banan_link_library(kill ban)
banan_link_library(kill libc)
install(TARGETS kill OPTIONAL)