mirror of
https://github.com/neovim/neovim.git
synced 2026-01-30 09:01:07 +10:00
Problem: The fileio.c file is too big.
Solution: Move buf_write() to bufwrite.c. (Yegappan Lakshmanan,
closes vim/vim#4990)
c079f0fed1
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
12 lines
219 B
C
12 lines
219 B
C
#ifndef NVIM_BUFWRITE_H
|
|
#define NVIM_BUFWRITE_H
|
|
|
|
#include "nvim/buffer_defs.h"
|
|
#include "nvim/ex_cmds_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "bufwrite.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_BUFWRITE_H
|