Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69315483 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "libbinder: Add __assert in Trusty"

parents 82c3b18f 52f7b149
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -120,3 +120,7 @@ static inline void __ignore_va_args__(...) {}
    do {                                                                 \
        TLOGE("android_errorWriteLog: tag:%x subTag:%s\n", tag, subTag); \
    } while (0)

extern "C" inline void __assert(const char* file, int line, const char* str) {
    LOG_ALWAYS_FATAL("%s:%d: assertion \"%s\" failed", file, line, str);
}