diff options
author | 2017-04-20 17:49:26 +0000 | |
---|---|---|
committer | 2017-04-20 17:49:26 +0000 | |
commit | 59538115fa28a5d3e0daaaa722a2530a34e9d39c (patch) | |
tree | 957ae4b5ff6b602c03d1a0023a4c23f627eb062b /usr.bin/tmux/tmux.h | |
parent | Add getptmfd(), fdopenpty(), fdforkpty() functions. These allow programs (diff) | |
download | wireguard-openbsd-59538115fa28a5d3e0daaaa722a2530a34e9d39c.tar.xz wireguard-openbsd-59538115fa28a5d3e0daaaa722a2530a34e9d39c.zip |
Use fdforkpty() instead of our own unwrapped versions.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 939e5ad3203..3c46b8ded0b 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.743 2017/04/20 09:43:45 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.744 2017/04/20 17:49:26 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2307,8 +2307,4 @@ void style_apply_update(struct grid_cell *, struct options *, int style_equal(const struct grid_cell *, const struct grid_cell *); -/* pty.c */ -int pty_open(int *); -pid_t pty_fork(int, int *, char *, size_t, struct winsize *); - #endif /* TMUX_H */ |