b6cbf7203b
This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
16 lines
258 B
C
16 lines
258 B
C
/* $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);
|
|
}
|