diff options
author | François Revel <mmu_man@netsurf-browser.org> | 2008-08-12 01:44:59 +0000 |
---|---|---|
committer | François Revel <mmu_man@netsurf-browser.org> | 2008-08-12 01:44:59 +0000 |
commit | 4c8989a6db25de8b2d3bf7fff07489c05808122b (patch) | |
tree | 92b65ff2453f7c2bfb3aa5b4a38517f5ca0c026d /utils/talloc.c | |
parent | 1fdb8a8a823ab309214552df28621415bc95e451 (diff) | |
download | netsurf-4c8989a6db25de8b2d3bf7fff07489c05808122b.tar.gz |
no va_copy on BeOS
svn path=/trunk/netsurf/; revision=5066
Diffstat (limited to 'utils/talloc.c')
-rw-r--r-- | utils/talloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/talloc.c b/utils/talloc.c index 40b66d637..490c1a373 100644 --- a/utils/talloc.c +++ b/utils/talloc.c @@ -55,10 +55,12 @@ #include "replace.h" #else #include <stdarg.h> +#ifndef __BEOS__ /* Assume we've got va_copy */ #define HAVE_VA_COPY #include <string.h> #endif +#endif #include "talloc.h" #endif /* not _TALLOC_SAMBA3 */ |