diff options
author | dundargoc <gocdundar@gmail.com> | 2023-12-20 14:32:22 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-20 19:52:02 +0100 |
commit | 0c120307ca1ab613e63865c634d7e10ad67fb0ba (patch) | |
tree | a9645d52815c7729bb43eccd11132b1cd8471307 /src/nvim/debugger.c | |
parent | cc6a257c8cad8051b6f7e9287249293ab0a929d9 (diff) | |
download | rneovim-0c120307ca1ab613e63865c634d7e10ad67fb0ba.tar.gz rneovim-0c120307ca1ab613e63865c634d7e10ad67fb0ba.tar.bz2 rneovim-0c120307ca1ab613e63865c634d7e10ad67fb0ba.zip |
refactor: eliminate cyclic includes
Diffstat (limited to 'src/nvim/debugger.c')
-rw-r--r-- | src/nvim/debugger.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/debugger.c b/src/nvim/debugger.c index 000fe13502..35333e4b12 100644 --- a/src/nvim/debugger.c +++ b/src/nvim/debugger.c @@ -8,6 +8,7 @@ #include <string.h> #include "nvim/ascii_defs.h" +#include "nvim/buffer_defs.h" #include "nvim/charset.h" #include "nvim/cmdexpand_defs.h" #include "nvim/debugger.h" @@ -32,6 +33,7 @@ #include "nvim/regexp.h" #include "nvim/runtime.h" #include "nvim/state_defs.h" +#include "nvim/types_defs.h" #include "nvim/vim_defs.h" /// batch mode debugging: don't save and restore typeahead. |