repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
lib
/
libc
/
stdlib
/
Lint_llabs.c
blob
2202256ce7c2c9c38ca27209d8b3a0028944e691
1
/* $NetBSD: Lint_llabs.c,v 1.1 2000/03/06 18:32:28 kleink Exp $ */
2
3
/*
4
* This file placed in the public domain.
5
* Klaus Klein, March 6, 2000.
6
*/
7
8
#include <stdlib.h>
9
10
/* ARGSUSED */
/* LONGLONG */
11
long long int
12
llabs
(
j
)
13
long long int
j
;
14
{
15
return
(
0
);
16
}