4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-22 23:17:28 +08:00
Yaakov Selkowitz 9087163804 ansification: remove _DEFUN
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:26 -06:00

40 lines
976 B
C

#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
/*
* SPU specific assert: just directly call exit(6), and use fprintf. That
* way we do not pull in the abort, signal.o code, nor (the likely
* otherwise unused) fiprintf.
*/
/* func can be NULL, in which case no function information is given. */
void
__assert_func (const char *file,
int line,
const char *func,
const char *failedexpr)
{
fprintf(stderr,
"assertion \"%s\" failed: file \"%s\", line %d%s%s\n",
failedexpr, file, line,
func ? ", function: " : "", func ? func : "");
/*
* On the SPU, we do not have signaling. Previously, standard newlib
* abort code was used. That eventually leads to a kill(SIGABRT), and
* for SPU too an exit(SIGABRT). SIGABRT was 6, so just use that value
* here.
*/
exit(6);
/* NOTREACHED */
}
void
__assert (const char *file,
int line,
const char *failedexpr)
{
__assert_func (file, line, NULL, failedexpr);
/* NOTREACHED */
}