1 /* go-assert.c -- libgo specific assertions
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. */
11 #include "go-assert.h"
14 __go_assert_fail (const char *file
, unsigned int lineno
)
16 /* FIXME: Eventually we should dump a stack trace here. */
17 runtime_printf ("%s:%U: libgo assertion failure\n", file
, (uint64
) lineno
);