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

/*
 * Test function.  This is built into a shared library, and references a
 * versioned symbol foo that is in test.so.
 */
#include <stdio.h>

extern int show_foo ();

void
show_xyzzy()
{
  printf("%d", show_foo());
}