diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-22 21:21:57 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-22 21:21:57 +0200 |
commit | 7e1cb86da7f717bc47a69fbc6f52684e4da8dbb6 (patch) | |
tree | 7b11fe55b267d2b1973bd5ed083bc3723487a530 /LibCore/CFile.cpp | |
parent | 04b2082e97786f83774788eb687bc38cd145a1a9 (diff) | |
download | serenity-7e1cb86da7f717bc47a69fbc6f52684e4da8dbb6.zip |
LibHTML: Make it possible to build LibHTML on the host.
- "make" builds the normal Serenity libhtml.a
- "make -f Makefile.host" builds a test program for the host machine.
Diffstat (limited to 'LibCore/CFile.cpp')
-rw-r--r-- | LibCore/CFile.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibCore/CFile.cpp b/LibCore/CFile.cpp index 335f54009a..09d209d4b4 100644 --- a/LibCore/CFile.cpp +++ b/LibCore/CFile.cpp @@ -1,4 +1,5 @@ #include <LibCore/CFile.h> +#include <errno.h> #include <fcntl.h> #include <stdio.h> #include <unistd.h> |