load.c: Make stream_init() static

This commit is contained in:
Petri Lehtinen 2010-05-07 07:35:11 +03:00
parent 047a1417fb
commit f9475f9577

View file

@ -113,7 +113,8 @@ static void error_set(json_error_t *error, const lex_t *lex,
/*** lexical analyzer ***/
void stream_init(stream_t *stream, get_func get, eof_func eof, void *data)
static void
stream_init(stream_t *stream, get_func get, eof_func eof, void *data)
{
stream->get = get;
stream->eof = eof;