mirror of
https://github.com/tailix/libclayer.git
synced 2024-11-20 11:06:24 -05:00
18 lines
339 B
C
18 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
|