repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git]
/
compiler
/
clib
/
getloadavg.c
blob
deb9962a45552a0b2c0812ed4d41a13d01fb22f7
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
/*****************************************************************************
7
8
NAME */
9
10
#include <stdlib.h>
11
12
int
getloadavg
(
13
14
/* SYNOPSIS */
15
double
loadavg
[],
16
int
n
)
17
18
/* FUNCTION
19
20
INPUTS
21
22
RESULT
23
24
NOTES
25
26
EXAMPLE
27
28
BUGS
29
30
SEE ALSO
31
32
INTERNALS
33
34
******************************************************************************/
35
{
36
return
-
1
;
37
}
38