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_imaxabs.c
blob
85cc957e44b95dc0629315c5cb833fe737b2728c
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
* Matt Thomas, August 4, 2008.
6
*/
7
8
#include <inttypes.h>
9
10
/* ARGSUSED */
11
intmax_t
12
imaxabs
(
intmax_t
j
)
13
{
14
return
(
0
);
15
}