summaryrefslogtreecommitdiff
path: root/lang/nodejs/patches/patch-deps_v8_src_common_globals.h
blob: 5dffb477bfbd4ba406a41b8ce6d0dab9aa5678fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$NetBSD: patch-deps_v8_src_common_globals.h,v 1.1 2019/12/09 20:03:51 adam Exp $

stdarg.h is needed for va_list on at least NetBSD.

--- deps/v8/src/common/globals.h.orig	2019-11-19 08:29:07.000000000 +0000
+++ deps/v8/src/common/globals.h
@@ -7,6 +7,7 @@
 
 #include <stddef.h>
 #include <stdint.h>
+#include <stdarg.h>
 
 #include <limits>
 #include <ostream>