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