repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Check for SYS/GL during library init. Reason is that
[AROS.git]
/
test
/
clib
/
usleep.c
blob
4223a5be0f000709fbe7fbc4b15163c61c5851b6
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include
"test.h"
7
#include <stdio.h>
8
#include <unistd.h>
9
10
int
main
()
11
{
12
TEST
((
usleep
(
1000000
) != -
1
));
13
return
OK
;
14
}
15
16
void
cleanup
()
17
{
18
}