userspace: Implement dirname utility

This commit is contained in:
2024-12-05 08:30:30 +02:00
parent 097ab82529
commit cb7d5c9d09
3 changed files with 27 additions and 0 deletions

View File

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