1 #ifndef NVIM_OS_PTY_PROCESS_H
2 #define NVIM_OS_PTY_PROCESS_H
3 
4 #ifdef WIN32
5 # include "nvim/os/pty_process_win.h"
6 #else
7 # include "nvim/os/pty_process_unix.h"
8 #endif
9 #endif  // NVIM_OS_PTY_PROCESS_H
10