summaryrefslogtreecommitdiff
path: root/Userland/false.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-25 21:39:37 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-25 21:39:37 +0200
commit3faaa3e04a3eef72554e9235cb81327642b62ab7 (patch)
tree688020df32805519700a13e2371b92560a57e3c6 /Userland/false.cpp
parentdc6f57f19cff71c6bd83a42fd58a93adbbeb70cb (diff)
downloadserenity-3faaa3e04a3eef72554e9235cb81327642b62ab7.zip
Add /bin/false and /bin/true for fun. :^)
Diffstat (limited to 'Userland/false.cpp')
-rw-r--r--Userland/false.cpp4
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;
+}