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 /Tests/Kernel/crash-fcntl-invalid-cmd.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 'Tests/Kernel/crash-fcntl-invalid-cmd.cpp')
-rw-r--r-- | Tests/Kernel/crash-fcntl-invalid-cmd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/Kernel/crash-fcntl-invalid-cmd.cpp b/Tests/Kernel/crash-fcntl-invalid-cmd.cpp index ab5083f952..cd81095c58 100644 --- a/Tests/Kernel/crash-fcntl-invalid-cmd.cpp +++ b/Tests/Kernel/crash-fcntl-invalid-cmd.cpp @@ -5,6 +5,7 @@ */ #include <assert.h> +#include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> |