mirror of
https://github.com/neovim/neovim.git
synced 2026-04-27 09:44:07 +00:00
10 lines
197 B
C
10 lines
197 B
C
#ifndef NVIM_OS_PTY_PROCESS_H
|
|
#define NVIM_OS_PTY_PROCESS_H
|
|
|
|
#ifdef WIN32
|
|
# include "nvim/os/pty_process_win.h"
|
|
#else
|
|
# include "nvim/os/pty_process_unix.h"
|
|
#endif
|
|
#endif // NVIM_OS_PTY_PROCESS_H
|