summaryrefslogtreecommitdiff
path: root/utils/talloc.c
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2009-02-22 17:54:30 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2009-02-22 17:54:30 +0000
commit3aa3708f178e1a72ec005de3cb0bb687d406b5cd (patch)
treea936febd1092a77e22e673fc0f647327b402e9f2 /utils/talloc.c
parent903edd1bf5b291c741ebd2e27c62be6f1fb946d1 (diff)
downloadnetsurf-3aa3708f178e1a72ec005de3cb0bb687d406b5cd.tar.gz
netsurf-3aa3708f178e1a72ec005de3cb0bb687d406b5cd.tar.bz2
Haiku neither has va_copy (yet).
svn path=/trunk/netsurf/; revision=6605
Diffstat (limited to 'utils/talloc.c')
-rw-r--r--utils/talloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/talloc.c b/utils/talloc.c
index 490c1a373..c60c6a58f 100644
--- a/utils/talloc.c
+++ b/utils/talloc.c
@@ -55,7 +55,7 @@
#include "replace.h"
#else
#include <stdarg.h>
-#ifndef __BEOS__
+#if !defined(__BEOS__) && !defined(__HAIKU__)
/* Assume we've got va_copy */
#define HAVE_VA_COPY
#include <string.h>