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

namespace A
{
  namespace B
  {
    int ab = 11;
  }
}

namespace C
{
  namespace D
  {
    using namespace A::B;

    int
    second()
    {
      ab;
      return 0;
    }
  }

  int
  first()
  {
    //ab;
    return D::second();
  }
}

int
main()
{
  //ab;
  return C::first();
}