repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libgloss
/
zpu
/
sleep.c
blob
793000aac60fdc76ec8349a3136f670fabf03e78
1
2
#include <_ansi.h>
3
#include <_syslist.h>
4
#include <errno.h>
5
6
unsigned int
sleep
(
unsigned int
seconds
)
7
{
8
errno
=
ENOSYS
;
9
return
-
1
;
10
}