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

#include <stdio.h>

extern int foo;
extern void bar (void);

void
xxx (void)
{
  printf ("MAIN\n");
}

int
main (void)
{
  foo = 1;
  bar ();
  if (foo == -1)
    printf ("OK1\n");
  else if (foo == 1)
    printf ("OK2\n");
  return 0;
}