diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-22 21:52:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-22 21:52:41 +0000 |
commit | a52be0e194f10e21e8f094a908e3afe9abfce8ae (patch) | |
tree | 2954cb870cb8e88d1bcbe5f48b2a1d5ecdaa08d7 /tmux.h | |
parent | c4d09c0511f051ea95f65b39712366d1e4479630 (diff) | |
download | rtmux-a52be0e194f10e21e8f094a908e3afe9abfce8ae.tar.gz rtmux-a52be0e194f10e21e8f094a908e3afe9abfce8ae.tar.bz2 rtmux-a52be0e194f10e21e8f094a908e3afe9abfce8ae.zip |
More missing bits from Solaris.
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; |