repo.or.cz
/
cake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added setting position while duplicating file handles with FMF_WRITE mode. It's neede...
[cake.git]
/
compiler
/
clib
/
getgrnam.c
blob
9a820f5931fa307de8d229513ad087331cee4d2c
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
*
getgrnam
(
const char
*
name
)
11
{
12
# warning Implement getgrnam()
13
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
14
15
return
NULL
;
16
}