Files
neovim/src/nvim/os/pty_process.h
2016-06-04 20:02:56 -04:00

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