summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-22 21:52:41 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-22 21:52:41 +0000
commita52be0e194f10e21e8f094a908e3afe9abfce8ae (patch)
tree2954cb870cb8e88d1bcbe5f48b2a1d5ecdaa08d7 /tmux.h
parentc4d09c0511f051ea95f65b39712366d1e4479630 (diff)
More missing bits from Solaris.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 16010d37..47daf108 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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;