userspace: Implement pwd utility

This commit is contained in:
2025-11-04 18:46:13 +02:00
parent fc730679ed
commit acd792d8b4
3 changed files with 24 additions and 0 deletions

View File

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