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

#ifndef __DD_HEADER
#define __DD_HEADER

#include <stdint.h>

typedef union {
	long double ld;
	struct {
		double hi;
		double lo;
	};
} DD;

#endif // __DD_HEADER