2012-06-03 20:36:43 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 04:12:37 -07:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-02-13 06:48:23 -08:00
|
|
|
|
2012-05-03 16:43:51 -07:00
|
|
|
#include "mozilla/Assertions.h"
|
2012-04-09 12:45:17 -07:00
|
|
|
|
2012-02-13 06:48:23 -08:00
|
|
|
/* Implementations of runtime and static assertion macros for C and C++. */
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
MOZ_EXPORT_API(void)
|
|
|
|
MOZ_Assert(const char* s, const char* file, int ln)
|
|
|
|
{
|
2012-05-03 16:43:51 -07:00
|
|
|
MOZ_OutputAssertMessage(s, file, ln);
|
|
|
|
MOZ_CRASH();
|
2012-02-13 06:48:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|