server: switch to 16-bit crc
[fio.git] / log.h
1 #ifndef FIO_LOG_H
2 #define FIO_LOG_H
3
4 #include <stdio.h>
5
6 extern FILE *f_out;
7 extern FILE *f_err;
8
9 extern int log_err(const char *format, ...);
10 extern int log_info(const char *format, ...);
11
12 #define log_valist(str, args)   vfprintf(f_out, (str), (args))
13
14 #endif