blob: 07d346be220d2f36c57ff09d48a392a1d4317db3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef NVIM_OS_PTY_PROCESS_H
#define NVIM_OS_PTY_PROCESS_H
#ifdef MSWIN
# include "nvim/os/pty_process_win.h"
#else
# include "nvim/os/pty_process_unix.h"
#endif
#endif // NVIM_OS_PTY_PROCESS_H
|