source: trunk/sys/dietlibc/assert.c @ 186

Last change on this file since 186 was 1, checked in by alain, 7 years ago

First import

File size: 243 bytes
Line 
1#include <stdio.h>
2
3void __assert_fail (const char *__assertion, const char *__file, unsigned int __line, const char *__function)
4{
5  fprintf(stderr, "Assert faild: %s, file %s, line %d, func %s\n", __assertion, __file, __line, __function);
6}
Note: See TracBrowser for help on using the repository browser.