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
__aeabi_ldivmod: fix sign logic
[minix.git]
/
lib
/
libc
/
stdlib
/
Lint_labs.c
blob
c8f96cf6385fb52d6e47031a0050f6844a7bc1c7
1
/* $NetBSD: Lint_labs.c,v 1.2 2000/06/14 06:49:07 cgd Exp $ */
2
3
/*
4
* This file placed in the public domain.
5
* Chris Demetriou, November 5, 1997.
6
*/
7
8
#include <stdlib.h>
9
10
/*ARGSUSED*/
11
long
12
labs
(
j
)
13
long
j
;
14
{
15
return
(
0
);
16
}