blob: 8d0dbb6415ab80e8416521d15fbc3ad85f0697a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _CLOG_H_
#define _CLOG_H_
#include <stdarg.h>
int lprintf(const char *format, ...);
int lvprintf(const char *format, va_list ap);
void lvfatalf(const char *format, va_list ap);
#endif
|