cde4fa851d
- Formatted by clang-format (WebKit-style). - Removed unnecessary errno linux. - Added KOS error codes. - String functions have been replaced with more optimal ones for x86. - Changed wrappers for 70 sysfunction. git-svn-id: svn://kolibrios.org@9765 a494cfbc-eb01-0410-851d-a64ba20cac60
13 lines
301 B
C
13 lines
301 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#pragma GCC push_options
|
|
#pragma GCC optimize("O0")
|
|
|
|
void __assert_fail(const char* expr, const char* file, int line, const char* func)
|
|
{
|
|
fprintf(stdout, "Assertion failed: %s (%s: %s: %d)\n", expr, file, func, line);
|
|
exit(0);
|
|
}
|
|
|
|
#pragma GCC pop_options |