]> git.ozlabs.org Git - petitboot/blob - log.h
6f44bea0d38ac1fd9bd543676757ce47af788a64
[petitboot] / log.h
1 #ifndef _LOG_H
2 #define _LOG_H
3
4 #include <stdio.h>
5
6 void __attribute__ ((format (printf, 1, 2))) pb_log(const char *fmt, ...);
7 void pb_log_set_stream(FILE *stream);
8 FILE * pb_log_get_stream(void);
9 void pb_log_always_flush(int state);
10
11 #endif /* _LOG_H */