mirror of
https://github.com/tailix/libclayer.git
synced 2025-02-10 15:36:24 -05:00
19 lines
339 B
C
19 lines
339 B
C
|
#ifndef KERNAUX_INCLUDED_RUNTIME
|
||
|
#define KERNAUX_INCLUDED_RUNTIME
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef void (*KernAux_Assert_Cb)(const char *file, int line, const char *msg);
|
||
|
|
||
|
extern KernAux_Assert_Cb kernaux_assert_cb;
|
||
|
|
||
|
void kernaux_assert_do(const char *file, int line, const char *msg);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|