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
add a missing section header table index conversion
[tangerine.git]
/
compiler
/
clib
/
wait.c
blob
2da8432fefe5b0e12ac5e551be0f3f0df3a02bc6
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <aros/debug.h>
7
8
#include <sys/types.h>
9
#include <sys/wait.h>
10
#include <errno.h>
11
12
pid_t
wait
(
int
*
status
)
13
{
14
# warning Implement wait()
15
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
16
17
errno
=
EPERM
;
18
return
-
1
;
19
}