cleanup: Remove stdio header from param.c

This commit is contained in:
Christian Decker 2020-12-04 11:51:52 +01:00 committed by Rusty Russell
parent 55d9492d9e
commit 47b8b46d54
2 changed files with 1 additions and 2 deletions

View File

@ -262,8 +262,6 @@ static struct command_result *param_arr(struct command *cmd, const char *buffer,
"Expected array or object for params");
}
#include <stdio.h>
const char *param_subcommand(struct command *cmd, const char *buffer,
const jsmntok_t tokens[],
const char *name, ...)

View File

@ -8,6 +8,7 @@
#include <common/setup.h>
#include <setjmp.h>
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
#include <wire/wire.h>