muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / getlogin.c
blob194f02d12de284e7d3a199d1b5ea66e3d39b1b4d
1 /*
2 Copyright © 2008-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function getlogin().
6 */
8 #include <aros/debug.h>
10 #include <errno.h>
12 /*****************************************************************************
14 NAME */
15 #include <unistd.h>
17 char * getlogin(
19 /* SYNOPSIS */
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
29 Not implemented.
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 ******************************************************************************/
41 /* TODO: Implement getlogin() */
42 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
44 errno = ENOSYS;
45 return NULL;