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

extern "C" int csub (int);
int
foo (int x)
{
  return csub (x / 2);
}

extern "C" int cppsub_ (int *);
int
cppsub_ (int *y)
{
  return foo (*y);
}