userspace: Implement chown utility

This commit is contained in:
2025-06-28 21:32:59 +03:00
parent ebf2b16d09
commit 5df0e25c1f
3 changed files with 119 additions and 0 deletions

View File

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