1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-19 19:07:34 +00:00

LibCore: Remove unused header includes

This commit is contained in:
Brian Gianforcaro 2021-07-31 00:42:03 -07:00 committed by Gunnar Beutner
parent 0fc853f5ba
commit 176e1cbca7
10 changed files with 0 additions and 21 deletions

View file

@ -8,7 +8,6 @@
#include <AK/Random.h>
#include <AK/ScopeGuard.h>
#include <LibCore/Account.h>
#include <LibCore/File.h>
#ifndef AK_OS_MACOS
# include <crypt.h>
#endif

View file

@ -5,8 +5,6 @@
*/
#include <LibCore/AnonymousBuffer.h>
#include <LibIPC/Decoder.h>
#include <LibIPC/Encoder.h>
#include <LibIPC/File.h>
#include <fcntl.h>
#include <stdio.h>

View file

@ -5,13 +5,11 @@
*/
#include "Command.h"
#include <AK/ByteBuffer.h>
#include <AK/Format.h>
#include <AK/ScopeGuard.h>
#include <LibCore/File.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>

View file

@ -4,14 +4,12 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/ByteBuffer.h>
#include <AK/StringBuilder.h>
#include <LibCore/ConfigFile.h>
#include <LibCore/File.h>
#include <LibCore/StandardPaths.h>
#include <pwd.h>
#include <stdio.h>
#include <unistd.h>
namespace Core {

View file

@ -9,7 +9,6 @@
#include <AK/Time.h>
#include <LibCore/DateTime.h>
#include <errno.h>
#include <sys/time.h>
#include <time.h>
namespace Core {

View file

@ -5,7 +5,6 @@
*/
#include <AK/Badge.h>
#include <AK/ByteBuffer.h>
#include <AK/Debug.h>
#include <AK/Format.h>
#include <AK/IDAllocator.h>
@ -26,11 +25,9 @@
#include <fcntl.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>

View file

@ -7,21 +7,16 @@
#include "FileWatcher.h"
#include <AK/Debug.h>
#include <AK/Function.h>
#include <AK/LexicalPath.h>
#include <AK/Noncopyable.h>
#include <AK/NonnullRefPtr.h>
#include <AK/RefCounted.h>
#include <AK/Result.h>
#include <AK/String.h>
#include <Kernel/API/InodeWatcherEvent.h>
#include <Kernel/API/InodeWatcherFlags.h>
#include <LibCore/DirIterator.h>
#include <LibCore/Notifier.h>
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
namespace Core {

View file

@ -4,7 +4,6 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Badge.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/Notifier.h>

View file

@ -14,10 +14,7 @@
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <unistd.h>
namespace Core {

View file

@ -8,7 +8,6 @@
#include <AK/Types.h>
#include <LibCore/Notifier.h>
#include <LibCore/UDPServer.h>
#include <LibCore/UDPSocket.h>
#include <errno.h>
#include <stdio.h>
#include <unistd.h>