From b463d3de54c5d940341968aee3307cb83e3629b8 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 7 Jan 2011 00:35:13 +0000 Subject: Missing HAVE_STDINT_H. --- compat/asprintf.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/compat/asprintf.c b/compat/asprintf.c index 41ae64a7..d5f50e85 100644 --- a/compat/asprintf.c +++ b/compat/asprintf.c @@ -1,4 +1,4 @@ -/* $Id: asprintf.c,v 1.4 2008-09-26 06:45:28 nicm Exp $ */ +/* $Id: asprintf.c,v 1.5 2011-01-07 00:35:13 nicm Exp $ */ /* * Copyright (c) 2006 Nicholas Marriott @@ -18,7 +18,11 @@ #include #include +#ifdef HAVE_STDINT_H #include +#else +#include +#endif #include #include "tmux.h" -- cgit