- Made pciuhci.device and pciehci.device compile again: completed
[AROS.git] / compiler / clib / setuid.c
blob1b72436727d6b5b92481bac02111c4d4e66a0965
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function setuid().
6 */
8 #include <aros/debug.h>
10 #include <sys/types.h>
11 #include <errno.h>
13 /*****************************************************************************
15 NAME */
16 #include <unistd.h>
18 int setuid(
20 /* SYNOPSIS */
21 uid_t uid)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
30 Not implemented.
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 /* TODO: Implement setuid() */
43 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
44 errno = ENOSYS;
46 return 0;
47 } /* setuid() */