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