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 __attribute__ ((weak)) fun (void);

int
main (void)
{
  if (&fun != 0)
    fun ();
  else
    printf ("Weak undefined\n");
  return 0;
}