muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / setuid.c
blobc39f46a363e2db7474ee157ada54e18b0069feb5
1 /*
2 Copyright © 2004-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function setuid().
6 */
8 #include <aros/debug.h>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
14 #include <unistd.h>
16 int setuid(
18 /* SYNOPSIS */
19 uid_t uid)
21 /* FUNCTION
23 INPUTS
25 RESULT
27 NOTES
28 Not implemented.
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 /* TODO: Implement setuid() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
42 errno = ENOSYS;
44 return 0;
45 } /* setuid() */