summaryrefslogtreecommitdiff
path: root/LibC/crt0.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-22 13:21:49 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-22 13:21:49 +0200
commite388808479d049e93990c5de1eb9e559f5045c2b (patch)
tree4b5075b012bc5f822c068ad7f95d68b042c8aee0 /LibC/crt0.cpp
parentf490ce0fb52c89f548444d38077e681b3dab8027 (diff)
downloadserenity-e388808479d049e93990c5de1eb9e559f5045c2b.zip
LibC: Some compat fixes for GNU make.
Diffstat (limited to 'LibC/crt0.cpp')
-rw-r--r--LibC/crt0.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/LibC/crt0.cpp b/LibC/crt0.cpp
index c7bf35b2be..ee307daa81 100644
--- a/LibC/crt0.cpp
+++ b/LibC/crt0.cpp
@@ -38,9 +38,6 @@ int _start(int argc, char** argv, char** env)
int status = main(argc, argv);
- fflush(stdout);
- fflush(stderr);
-
exit(status);
return 20150614;