aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-11-16 10:55:54 +0800
committerGitHub <noreply@github.com>2023-11-16 10:55:54 +0800
commitbb4b4576e384c71890b4df4fa4f1ae76fad3a59d (patch)
treecfbee648282a9113496aec14eb7ce144eb791445 /src/nvim/event
parent326d46f690b383846f136f2a25523cffe2882f27 (diff)
downloadrneovim-bb4b4576e384c71890b4df4fa4f1ae76fad3a59d.tar.gz
rneovim-bb4b4576e384c71890b4df4fa4f1ae76fad3a59d.tar.bz2
rneovim-bb4b4576e384c71890b4df4fa4f1ae76fad3a59d.zip
refactor: iwyu (#26062)
Diffstat (limited to 'src/nvim/event')
-rw-r--r--src/nvim/event/libuv_process.c1
-rw-r--r--src/nvim/event/process.c2
-rw-r--r--src/nvim/event/socket.c1
-rw-r--r--src/nvim/event/stream.c1
4 files changed, 0 insertions, 5 deletions
diff --git a/src/nvim/event/libuv_process.c b/src/nvim/event/libuv_process.c
index 73dec2bcab..85fec65177 100644
--- a/src/nvim/event/libuv_process.c
+++ b/src/nvim/event/libuv_process.c
@@ -8,7 +8,6 @@
#include "nvim/event/process.h"
#include "nvim/event/stream.h"
#include "nvim/log.h"
-#include "nvim/macros.h"
#include "nvim/os/os.h"
#include "nvim/ui_client.h"
diff --git a/src/nvim/event/process.c b/src/nvim/event/process.c
index a6646c3a7f..b69612337c 100644
--- a/src/nvim/event/process.c
+++ b/src/nvim/event/process.c
@@ -1,7 +1,6 @@
#include <assert.h>
#include <inttypes.h>
#include <signal.h>
-#include <stdlib.h>
#include <uv.h>
#include "klib/klist.h"
@@ -10,7 +9,6 @@
#include "nvim/event/process.h"
#include "nvim/globals.h"
#include "nvim/log.h"
-#include "nvim/macros.h"
#include "nvim/main.h"
#include "nvim/os/process.h"
#include "nvim/os/pty_process.h"
diff --git a/src/nvim/event/socket.c b/src/nvim/event/socket.c
index 62326de075..542fb707fd 100644
--- a/src/nvim/event/socket.c
+++ b/src/nvim/event/socket.c
@@ -12,7 +12,6 @@
#include "nvim/event/stream.h"
#include "nvim/gettext.h"
#include "nvim/log.h"
-#include "nvim/macros.h"
#include "nvim/main.h"
#include "nvim/memory.h"
#include "nvim/os/os.h"
diff --git a/src/nvim/event/stream.c b/src/nvim/event/stream.c
index 49b5be23c8..17c1b0a072 100644
--- a/src/nvim/event/stream.c
+++ b/src/nvim/event/stream.c
@@ -7,7 +7,6 @@
#include "nvim/event/loop.h"
#include "nvim/event/stream.h"
#include "nvim/log.h"
-#include "nvim/macros.h"
#include "nvim/rbuffer.h"
#ifdef MSWIN
# include "nvim/os/os_win_console.h"