diff options
Diffstat (limited to 'lib/tiny-printf.c')
-rw-r--r-- | lib/tiny-printf.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/tiny-printf.c b/lib/tiny-printf.c index e29377e000..5f7e27d76e 100644 --- a/lib/tiny-printf.c +++ b/lib/tiny-printf.c @@ -383,12 +383,3 @@ int snprintf(char *buf, size_t size, const char *fmt, ...) return ret; } - -void __assert_fail(const char *assertion, const char *file, unsigned line, - const char *function) -{ - /* This will not return */ - printf("%s:%u: %s: Assertion `%s' failed.", file, line, function, - assertion); - hang(); -} |