diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-05-27 18:04:45 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-05-27 18:04:45 +0100 |
commit | 762fa58ce8de79ef06fdc673ee271dba1f193a44 (patch) | |
tree | 28e886eaaa59377901920daee36f0bf0416c9d96 /compat.h | |
parent | f2ec81cf210ec30418a7906abec004f7321b94f2 (diff) | |
parent | cfef0c6658be29967f883997ba7139ca3bdef2ba (diff) | |
download | rtmux-762fa58ce8de79ef06fdc673ee271dba1f193a44.tar.gz rtmux-762fa58ce8de79ef06fdc673ee271dba1f193a44.tar.bz2 rtmux-762fa58ce8de79ef06fdc673ee271dba1f193a44.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'compat.h')
-rw-r--r-- | compat.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -223,6 +223,16 @@ size_t strlcat(char *, const char *, size_t); int daemon(int, int); #endif +#ifndef HAVE_GETPROGNAME +/* getprogname.c */ +const char *getprogname(void); +#endif + +#ifndef HAVE_SETPROCTITLE +/* setproctitle.c */ +void setproctitle(const char *, ...); +#endif + #ifndef HAVE_B64_NTOP /* b64_ntop.c */ #undef b64_ntop /* for Cygwin */ |