Module Name: src
Committed By: martin
Date: Thu Apr 4 16:11:13 UTC 2013
Modified Files:
src/usr.sbin/installboot/arch: vax.c
Log Message:
Provide an empty __CTASSERT() for toolbuilds
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/usr.sbin/installboot/arch/vax.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/installboot/arch/vax.c
diff -u src/usr.sbin/installboot/arch/vax.c:1.14 src/usr.sbin/installboot/arch/vax.c:1.15
--- src/usr.sbin/installboot/arch/vax.c:1.14 Thu Apr 4 12:55:30 2013
+++ src/usr.sbin/installboot/arch/vax.c Thu Apr 4 16:11:12 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: vax.c,v 1.14 2013/04/04 12:55:30 martin Exp $ */
+/* $NetBSD: vax.c,v 1.15 2013/04/04 16:11:12 martin Exp $ */
/*-
* Copyright (c) 1999, 2002 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
#include <sys/cdefs.h>
#if !defined(__lint)
-__RCSID("$NetBSD: vax.c,v 1.14 2013/04/04 12:55:30 martin Exp $");
+__RCSID("$NetBSD: vax.c,v 1.15 2013/04/04 16:11:12 martin Exp $");
#endif /* !__lint */
#include <sys/param.h>
@@ -84,6 +84,10 @@ __RCSID("$NetBSD: vax.c,v 1.14 2013/04/0
#include "installboot.h"
+#ifndef __CTASSERT
+#define __CTASSERT(X)
+#endif
+
static int load_bootstrap(ib_params *, char **,
uint32_t *, uint32_t *, size_t *);