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_llabs.c,v 1.2 2000/03/07 20:02:00 kleink Exp $	*/

/*
 * This file placed in the public domain.
 * Klaus Klein, March 6, 2000.
 */

#include <stdlib.h>

/* ARGSUSED */ /* LONGLONG */
long long int
llabs(j)
	long long int j;
{
	return (0);
}