Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

// RUN: %clang_cc1 -D FOOBAR="\"\"" %s -emit-pch -o %t.pch
// RUN: %clang_cc1 -D FOOBAR="\"\"" %s -include-pch %t.pch

// rdar://11418366

#ifndef HEADER
#define HEADER

extern int printf(const char *restrict, ...);
#define LOG printf(FOOBAR "%f", __LINE__)

#else

void foo() {
  LOG;
}

#endif