mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-20 01:54:28 +00:00
This cleans up the main-entry header compel.h Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
7 lines
300 B
C
7 lines
300 B
C
#ifndef __COMPEL_UAPI_LOG_H__
|
|
#define __COMPEL_UAPI_LOG_H__
|
|
#include <compel/loglevels.h>
|
|
typedef void (*compel_log_fn)(unsigned int lvl, const char *fmt, va_list parms);
|
|
extern void compel_log_init(compel_log_fn log_fn, unsigned int level);
|
|
extern unsigned int compel_log_get_loglevel(void);
|
|
#endif
|