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