userspace: Implement true and false utilities
This commit is contained in:
9
userspace/programs/true/CMakeLists.txt
Normal file
9
userspace/programs/true/CMakeLists.txt
Normal 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)
|
||||
6
userspace/programs/true/main.cpp
Normal file
6
userspace/programs/true/main.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
Reference in New Issue
Block a user