diff options
author | 2018-11-22 10:36:40 +0000 | |
---|---|---|
committer | 2018-11-22 10:36:40 +0000 | |
commit | ca2738ca54e90bb90b98aa1e094923e07397b78d (patch) | |
tree | 03eea4e1858148f2ccb205e875952ea9f474a74a /usr.bin/tmux/tmux.h | |
parent | Output info on SIGUSR1 as well as SIGINFO to resync with portable. (diff) | |
download | wireguard-openbsd-ca2738ca54e90bb90b98aa1e094923e07397b78d.tar.xz wireguard-openbsd-ca2738ca54e90bb90b98aa1e094923e07397b78d.zip |
Do not use PWD unless it actually matches the real working directory.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 49a0258b67e..cccb9aa1495 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.850 2018/10/25 15:13:38 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.851 2018/11/22 10:36:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1506,6 +1506,7 @@ extern int ptm_fd; extern const char *shell_command; int areshell(const char *); void setblocking(int, int); +const char *find_cwd(void); const char *find_home(void); /* proc.c */ |