source:
trunk/sys/dietlibc/assert.c
@
152
Last change on this file since 152 was 1, checked in by , 8 years ago | |
---|---|
File size: 243 bytes |
Line | |
---|---|
1 | #include <stdio.h> |
2 | |
3 | void __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.