From 67c2857b089f73e85c8f7e1d137849b8ec7f6572 Mon Sep 17 00:00:00 2001 From: martin Date: Thu, 4 Apr 2013 16:11:12 +0000 Subject: [PATCH] Provide an empty __CTASSERT() for toolbuilds --- usr.sbin/installboot/arch/vax.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/usr.sbin/installboot/arch/vax.c b/usr.sbin/installboot/arch/vax.c index 83e8924ac455..dc9ac89db994 100644 --- a/usr.sbin/installboot/arch/vax.c +++ b/usr.sbin/installboot/arch/vax.c @@ -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 #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 @@ -84,6 +84,10 @@ __RCSID("$NetBSD: vax.c,v 1.14 2013/04/04 12:55:30 martin Exp $"); #include "installboot.h" +#ifndef __CTASSERT +#define __CTASSERT(X) +#endif + static int load_bootstrap(ib_params *, char **, uint32_t *, uint32_t *, size_t *);