repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
release.sh: restore -jJAILDIR option
[minix.git]
/
lib
/
libc
/
stdlib
/
Lint_llabs.c
blob
7297875a27b51fde35f01e4c8f884157017fc125
1
/* $NetBSD: Lint_llabs.c,v 1.2 2000/03/07 20:02:00 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
}