diff options
author | Anton Kling <anton@kling.gg> | 2024-12-02 14:23:32 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-02 14:23:32 +0100 |
commit | 7d67bd2d9e690a662c1c8b51b245e83f2c6c5c74 (patch) | |
tree | abc7f2b6eeb29c4b6ba43b8a1ee2297fcf63b363 /userland/minibox/utilities/false.c | |
parent | eed6ff683cf124f43a21191ffa11278d9dbd7ff3 (diff) |
minibox: Add true, false
Diffstat (limited to 'userland/minibox/utilities/false.c')
-rw-r--r-- | userland/minibox/utilities/false.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/userland/minibox/utilities/false.c b/userland/minibox/utilities/false.c new file mode 100644 index 0000000..4559f59 --- /dev/null +++ b/userland/minibox/utilities/false.c @@ -0,0 +1,7 @@ +#include "include.h" + +int false_main(int argc, char **argv) { + (void)argc; + (void)argv; + return 1; +} |