summaryrefslogtreecommitdiffstats
path: root/runtime/autoconf-trace-printk.c
blob: 8330a58aa406a2241b1b3adcc36eccc65fe86fd0 (plain)
1
2
3
4
5
6
7
8
#include <linux/kernel.h>

int bar (void) {
  static char *fmt = "%s\n";
  trace_printk (fmt, "hello world");
  return 0;
}