1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:57:35 +00:00

LibC: Do not include errno.h inside unistd.h

POSIX does not mandate this, therefore let's not do it.
This commit is contained in:
Jean-Baptiste Boric 2021-05-14 16:32:57 +02:00 committed by Andreas Kling
parent 7f498769ac
commit e16894af5a
32 changed files with 31 additions and 3 deletions

View file

@ -13,6 +13,7 @@
#include <AK/StringBuilder.h>
#include <LibCore/ConfigFile.h>
#include <LibDesktop/AppFile.h>
#include <errno.h>
#include <serenity.h>
#include <spawn.h>
#include <stdio.h>