summaryrefslogtreecommitdiff
path: root/openbsd-compat/openbsd-compat.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-07-12 23:10:33 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-07-12 23:10:33 +1000
commit5998ed03aadef4c9681e90b669ddd1c5d7a9247b (patch)
tree573bcf359b32d53d18b89af1f95f58367396b93a /openbsd-compat/openbsd-compat.h
parentdeecec98c76efc3022658e8233ac6536849372e4 (diff)
- (dtucker) [openbsd-compat/openbsd-compat.h] v*printf needs stdarg.h.
Diffstat (limited to 'openbsd-compat/openbsd-compat.h')
-rw-r--r--openbsd-compat/openbsd-compat.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h
index 8b885178c..18249d81e 100644
--- a/openbsd-compat/openbsd-compat.h
+++ b/openbsd-compat/openbsd-compat.h
@@ -1,4 +1,4 @@
1/* $Id: openbsd-compat.h,v 1.39 2006/07/10 14:20:52 dtucker Exp $ */ 1/* $Id: openbsd-compat.h,v 1.40 2006/07/12 13:10:34 dtucker Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1999-2003 Damien Miller. All rights reserved. 4 * Copyright (c) 1999-2003 Damien Miller. All rights reserved.
@@ -168,6 +168,10 @@ long long strtoll(const char *, char **, int);
168long long strtonum(const char *, long long, long long, const char **); 168long long strtonum(const char *, long long, long long, const char **);
169#endif 169#endif
170 170
171#if !defined(HAVE_VASPRINTF) || !defined(HAVE_VSNPRINTF)
172# include <stdarg.h>
173#endif
174
171#ifndef HAVE_VASPRINTF 175#ifndef HAVE_VASPRINTF
172int vasprintf(char **, const char *, va_list); 176int vasprintf(char **, const char *, va_list);
173#endif 177#endif