Commit c221eaae authored by Rusty Russell's avatar Rusty Russell

tools: don't use __attribute__

We have compiler.h for that.
parent add10b0b
......@@ -3,6 +3,7 @@
#include <ccan/grab_file/grab_file.h>
#include <ccan/str_talloc/str_talloc.h>
#include <ccan/read_write_all/read_write_all.h>
#include <ccan/compiler/compiler.h>
#include "tools.h"
#include <sys/types.h>
#include <sys/stat.h>
......@@ -12,7 +13,7 @@
#include <unistd.h>
#include <errno.h>
static char ** __attribute__((format(printf, 2, 3)))
static char ** PRINTF_FMT(2, 3)
lines_from_cmd(const void *ctx, const char *format, ...)
{
va_list ap;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment