diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-25 21:39:37 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-25 21:39:37 +0200 |
commit | 3faaa3e04a3eef72554e9235cb81327642b62ab7 (patch) | |
tree | 688020df32805519700a13e2371b92560a57e3c6 /Userland/false.cpp | |
parent | dc6f57f19cff71c6bd83a42fd58a93adbbeb70cb (diff) | |
download | serenity-3faaa3e04a3eef72554e9235cb81327642b62ab7.zip |
Add /bin/false and /bin/true for fun. :^)
Diffstat (limited to 'Userland/false.cpp')
-rw-r--r-- | Userland/false.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/false.cpp b/Userland/false.cpp new file mode 100644 index 0000000000..2227c3aa8f --- /dev/null +++ b/Userland/false.cpp @@ -0,0 +1,4 @@ +int main() +{ + return 1; +} |