aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/stdarg.h
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-10-18 17:08:09 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-10-18 17:08:09 +0100
commit2db40abe9933c27ffbbc04d0fa9c9f38e795d973 (patch)
treef343d0ec6da209182f8d42a68c25a059af923db3 /xen/include/xen/stdarg.h
parentea847a59dc7db35e48d15faf01ca81ba982675c8 (diff)
downloadxen-2db40abe9933c27ffbbc04d0fa9c9f38e795d973.tar.gz
xen-2db40abe9933c27ffbbc04d0fa9c9f38e795d973.tar.bz2
xen-2db40abe9933c27ffbbc04d0fa9c9f38e795d973.zip
[OpenBSD] Various changes to get Xen building on OpenBSD.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/xen/stdarg.h')
-rw-r--r--xen/include/xen/stdarg.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/xen/include/xen/stdarg.h b/xen/include/xen/stdarg.h
new file mode 100644
index 0000000000..a9bdaca256
--- /dev/null
+++ b/xen/include/xen/stdarg.h
@@ -0,0 +1,5 @@
+#if defined(__OpenBSD__) || defined(__sun__)
+# include "/usr/include/stdarg.h"
+#else
+# include <stdarg.h>
+#endif