RTAssertMsg1Weak.cpp revision a7aa94e0115a73841f34ebbfa00f63fa1904e51f
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync/* $Id$ */
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync/** @file
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * IPRT - RTAssertMsg1Weak.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync */
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync/*
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * Copyright (C) 2008 Sun Microsystems, Inc.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync *
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * available from http://www.virtualbox.org. This file is free software;
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * you can redistribute it and/or modify it under the terms of the GNU
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * General Public License (GPL) as published by the Free Software
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync *
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * The contents of this file may alternatively be used under the terms
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * of the Common Development and Distribution License Version 1.0
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * VirtualBox OSE distribution, in which case the provisions of the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * CDDL are applicable instead of those of the GPL.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync *
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * You may elect to license modified versions of this file under the
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * terms and conditions of either the GPL or the CDDL or both.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync *
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * Clara, CA 95054 USA or visit http://www.sun.com if you need
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync * additional information or have any questions.
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync */
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync
715e49c31b15c23c17a9ce3be42a75e7c48d4b78vboxsync/*******************************************************************************
* Header Files *
*******************************************************************************/
#include <iprt/assert.h>
#include "internal/iprt.h"
#include <iprt/stdarg.h>
RTDECL(void) RTAssertMsg1Weak(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction)
{
RTAssertMsg1(pszExpr, uLine, pszFile, pszFunction);
}
RT_EXPORT_SYMBOL(RTAssertMsg1Weak);