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

/* $NetBSD: Lint_bswap64.c,v 1.2 2001/02/27 19:04:40 cgd Exp $ */
/* Written by Manuel Bouyer. Public Domain */

#include <sys/types.h>

/*ARGSUSED*/
u_int64_t
bswap64(b64)
	u_int64_t b64;
{
	return 0;
}