diff options
Diffstat (limited to 'Userland/true.cpp')
-rw-r--r-- | Userland/true.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/true.cpp b/Userland/true.cpp index 905869dfa3..ec75811a19 100644 --- a/Userland/true.cpp +++ b/Userland/true.cpp @@ -1,4 +1,6 @@ -int main() +#include <sys/cdefs.h> + +int main(int, char**) { return 0; } |