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/id.cpp | |
parent | ebf308d413640c2bc405ac7bf5930f2aa4e7e1d8 (diff) | |
download | serenity-4914f3b8378e090d8ce54cd318dedc47783cf2eb.zip |
Build LibC and Userland with clang as well.
Diffstat (limited to 'Userland/id.cpp')
-rw-r--r-- | Userland/id.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/id.cpp b/Userland/id.cpp index 5b906669dc..4a399c7197 100644 --- a/Userland/id.cpp +++ b/Userland/id.cpp @@ -4,6 +4,8 @@ #include <grp.h> #include <alloca.h> +extern "C" int main(int, char**); + int main(int argc, char** argv) { (void) argc; |