summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/Lint_llabs.c
blob: 7297875a27b51fde35f01e4c8f884157017fc125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*	$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);
}