diff options
author | Jean-Baptiste Boric <jblbeurope@gmail.com> | 2021-05-14 16:32:57 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-14 22:24:02 +0200 |
commit | e16894af5affa556d9198feef864e27d19d504fb (patch) | |
tree | 48d093e2ead1e40549e859e883a2405bd499469e /Userland/Utilities/watch.cpp | |
parent | 7f498769aca2b18a463e627bdc9cb8deccd9f59c (diff) | |
download | serenity-e16894af5affa556d9198feef864e27d19d504fb.zip |
LibC: Do not include errno.h inside unistd.h
POSIX does not mandate this, therefore let's not do it.
Diffstat (limited to 'Userland/Utilities/watch.cpp')
-rw-r--r-- | Userland/Utilities/watch.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/watch.cpp b/Userland/Utilities/watch.cpp index 50e52c6b87..4054b4b0f8 100644 --- a/Userland/Utilities/watch.cpp +++ b/Userland/Utilities/watch.cpp @@ -9,6 +9,7 @@ #include <AK/Time.h> #include <AK/Vector.h> #include <LibCore/ArgsParser.h> +#include <errno.h> #include <spawn.h> #include <stdio.h> #include <sys/time.h> |