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
Restored work-around for hangs when trying to use disk-based handlers
[tangerine.git]
/
compiler
/
clib
/
getloadavg.c
blob
200afbd8b9d8ee67141abe4dd5739cbdeac5353d
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <stdlib.h>
7
8
int
getloadavg
(
double
loadavg
[],
int
n
)
9
{
10
return
-
1
;
11
}
12