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>
int nothing ()

{
    int x = 3 ;
    return x ;
}


int main ()

{
    int y ;
    y = nothing () ;
    printf ("hello\n") ;
    return 0;
}