blob: c4156278676d05d1d796a9c6152db9493b46926f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
extern inline struct liblog_output *liblog_use_stream(struct liblog_context *, FILE *, const char *, int);
#else
int main(void) {return 0;} /* TODO test */
#endif
|