define __KERNEL_STRICT_NAMES to avoid inclusion of kernel types on systems that carry...
[cake.git] / compiler / clib / setuid.c
blob9570518693dd63d768861d2a2662163d70673b97
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>
12 /*****************************************************************************
14 NAME */
15 #include <unistd.h>
17 int setuid(
19 /* SYNOPSIS */
20 uid_t uid)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 # warning Implement setuid()
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 return 0;
44 } /* setuid() */