1#ifndef DEFINE_FUNC_ATTRIBUTES
2# define DEFINE_FUNC_ATTRIBUTES
3#endif
4#include "nvim/func_attr.h"
5#undef DEFINE_FUNC_ATTRIBUTES
6void pty_process_save_termios(int tty_fd);
7int pty_process_spawn(PtyProcess *ptyproc) FUNC_ATTR_NONNULL_ALL;
8const char *pty_process_tty_name(PtyProcess *ptyproc);
9void pty_process_resize(PtyProcess *ptyproc, uint16_t width, uint16_t height) FUNC_ATTR_NONNULL_ALL;
10void pty_process_close(PtyProcess *ptyproc) FUNC_ATTR_NONNULL_ALL;
11void pty_process_close_master(PtyProcess *ptyproc) FUNC_ATTR_NONNULL_ALL;
12void pty_process_teardown(Loop *loop);
13#include "nvim/func_attr.h"
14