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
/
getgroups.c
blob
7aefbd51968c1f5714c29a42a028442b73b2712a
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <aros/debug.h>
7
8
#include <unistd.h>
9
10
int
getgroups
(
int
gidsetlen
,
gid_t
*
gidset
)
11
{
12
# warning Implement getgroups()
13
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
14
15
return
0
;
16
}