aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-18 20:12:19 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-18 20:12:19 +0000
commitb7cefe4b6ea258ac4258d24c88746933432ab32d (patch)
tree15b9350c276d90d1c4773ed127306126e864eecb /tmux.h
parentbe53d7f298bb81297ff0d186f9ddb585a2e57198 (diff)
downloadrtmux-b7cefe4b6ea258ac4258d24c88746933432ab32d.tar.gz
rtmux-b7cefe4b6ea258ac4258d24c88746933432ab32d.tar.bz2
rtmux-b7cefe4b6ea258ac4258d24c88746933432ab32d.zip
NO_ASPRINTF.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 7305e1a9..f62196fe 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.149 2008-06-18 20:11:25 nicm Exp $ */
+/* $Id: tmux.h,v 1.150 2008-06-18 20:12:19 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -780,6 +780,12 @@ int daemon(int, int);
pid_t forkpty(int *, char *, struct termios *, struct winsize *);
#endif
+#ifdef NO_ASPRINTF
+/* asprintf.c */
+int asprintf(char **, const char *, ...);
+int vasprintf(char **, const char *, va_list);
+#endif
+
/* tmux.c */
extern volatile sig_atomic_t sigwinch;
extern volatile sig_atomic_t sigterm;