blob: a36f43a75e4b3191232fe0ff8efc3b2a0ca2ffbd [file] [log] [blame]
Peter Collingbourne594c10d2014-11-27 00:12:26 +00001/* go-assert.c -- libgo specific assertions
2
3 Copyright 2010 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
6
7#include <stdio.h>
8#include <stdlib.h>
9
10#include "runtime.h"
11#include "go-assert.h"
12
13void
14__go_assert_fail (const char *file, unsigned int lineno)
15{
16 /* FIXME: Eventually we should dump a stack trace here. */
17 runtime_printf ("%s:%U: libgo assertion failure\n", file, (uint64) lineno);
18 abort ();
19}