use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / setuid.c
blobf1970ad49d34772baa7fa7c4308ba8500c3038c4
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 /* FIXME: Implement setuid() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 return 0;
44 } /* setuid() */