userspace: Implement true and false utilities

This commit is contained in:
2025-06-28 22:39:19 +03:00
parent 5df0e25c1f
commit 42a10b21c7
5 changed files with 32 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,6 @@
#include <stdlib.h>
int main()
{
return EXIT_SUCCESS;
}