muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / getgrnam.c
blob30abcdf8723e267a4e075a3f1c5fd593e16fdf23
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
7 #include <errno.h>
9 /*****************************************************************************
11 NAME */
13 #include <grp.h>
15 struct group *getgrnam(
17 /* SYNOPSIS */
18 const char *name)
20 /* FUNCTION
22 INPUTS
24 RESULT
26 NOTES
27 Not implemented.
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/
39 /* Implement getgrnam() */
40 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
41 errno = ENOSYS;
43 return NULL;