diff options
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.162 2008-06-22 16:54:08 nicm Exp $ */ +/* $Id: tmux.h,v 1.163 2008-06-22 21:52:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -812,6 +812,11 @@ int asprintf(char **, const char *, ...); int vasprintf(char **, const char *, va_list); #endif +#ifdef NO_FGETLN +/* fgetln.c */ +char *fgetln(FILE *, size_t *); +#endif + /* tmux.c */ extern volatile sig_atomic_t sigwinch; extern volatile sig_atomic_t sigterm; |