diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 19:36:27 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 19:36:27 +0000 |
commit | fed1a3ba8ab6d2ee1b81ca9c2bfe8039632f47b1 (patch) | |
tree | 25e233c8b2123001646acf41ebed4f76f1bc41dc /tmux.h | |
parent | 19b7946a85962f9458325637ff3559bca1286c6b (diff) | |
download | rtmux-fed1a3ba8ab6d2ee1b81ca9c2bfe8039632f47b1.tar.gz rtmux-fed1a3ba8ab6d2ee1b81ca9c2bfe8039632f47b1.tar.bz2 rtmux-fed1a3ba8ab6d2ee1b81ca9c2bfe8039632f47b1.zip |
compat/daemon.c
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.146 2008-06-18 19:34:50 nicm Exp $ */ +/* $Id: tmux.h,v 1.147 2008-06-18 19:36:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -760,6 +760,11 @@ size_t strlcpy(char *, const char *, size_t); size_t strlcat(char *, const char *, size_t); #endif +#ifdef NO_DAEMON +/* daemon.c */ +size_t daemon(int, int); +#endif + /* tmux.c */ extern volatile sig_atomic_t sigwinch; extern volatile sig_atomic_t sigterm; |