a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync/* $Id$ */
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync/** @file
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * IPRT - RTAssertMsg2WeakV.
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync */
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync/*
c7814cf6e1240a519cbec0441e033d0e2470ed00vboxsync * Copyright (C) 2009-2010 Oracle Corporation
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync *
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * available from http://www.virtualbox.org. This file is free software;
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * you can redistribute it and/or modify it under the terms of the GNU
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * General Public License (GPL) as published by the Free Software
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync *
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * The contents of this file may alternatively be used under the terms
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * of the Common Development and Distribution License Version 1.0
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * VirtualBox OSE distribution, in which case the provisions of the
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * CDDL are applicable instead of those of the GPL.
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync *
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * You may elect to license modified versions of this file under the
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync * terms and conditions of either the GPL or the CDDL or both.
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync */
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync/*******************************************************************************
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync* Header Files *
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync*******************************************************************************/
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync#include <iprt/assert.h>
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync#include "internal/iprt.h"
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsyncRTDECL(void) RTAssertMsg2WeakV(const char *pszFormat, va_list va)
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync{
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync RTAssertMsg2V(pszFormat, va);
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync}
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsyncRT_EXPORT_SYMBOL(RTAssertMsg2WeakV);
a7aa94e0115a73841f34ebbfa00f63fa1904e51fvboxsync