1234567891011121314151617181920212223242526272829 |
- #ifndef INT_UTIL_H
- #define INT_UTIL_H
- #define compilerrt_abort() compilerrt_abort_impl(__FILE__, __LINE__, \
- __func__)
- void compilerrt_abort_impl(const char *file, int line,
- const char *function) __attribute__((noreturn));
- #endif
|