diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-09 14:29:00 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-09 14:29:00 +0100 |
commit | 4914f3b8378e090d8ce54cd318dedc47783cf2eb (patch) | |
tree | 709510f0df1c338b36bbbb6962c7887449e997a9 /Userland/false.cpp | |
parent | ebf308d413640c2bc405ac7bf5930f2aa4e7e1d8 (diff) | |
download | serenity-4914f3b8378e090d8ce54cd318dedc47783cf2eb.zip |
Build LibC and Userland with clang as well.
Diffstat (limited to 'Userland/false.cpp')
-rw-r--r-- | Userland/false.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/false.cpp b/Userland/false.cpp index 2227c3aa8f..6e17027f35 100644 --- a/Userland/false.cpp +++ b/Userland/false.cpp @@ -1,4 +1,6 @@ -int main() +#include <sys/cdefs.h> + +int main(int, char**) { return 1; } |