diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 19:52:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 19:52:29 +0000 |
commit | 0d5ad358ae3bc80cbf226f5aef5790ca1e1f430c (patch) | |
tree | a7c06392e7d880a32a4096c93b742688082514ca /tmux.h | |
parent | fed1a3ba8ab6d2ee1b81ca9c2bfe8039632f47b1 (diff) | |
download | rtmux-0d5ad358ae3bc80cbf226f5aef5790ca1e1f430c.tar.gz rtmux-0d5ad358ae3bc80cbf226f5aef5790ca1e1f430c.tar.bz2 rtmux-0d5ad358ae3bc80cbf226f5aef5790ca1e1f430c.zip |
forkpty for Sun OS.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.147 2008-06-18 19:36:27 nicm Exp $ */ +/* $Id: tmux.h,v 1.148 2008-06-18 19:52:29 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -765,6 +765,12 @@ size_t strlcat(char *, const char *, size_t); size_t daemon(int, int); #endif +#ifdef NO_FORKPTY +/* forkpty.c */ +pid_t forkpty( + int *, int *, char *, struct termios *, struct winsize *); +#endif + /* tmux.c */ extern volatile sig_atomic_t sigwinch; extern volatile sig_atomic_t sigterm; |