use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / geteuid.c
blob542453d04e65a57fe10c83ab69beb1881d1dd2d4
1 /*
2 Copyright © 2003, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function geteuid().
6 */
8 #include <sys/types.h>
10 /*****************************************************************************
12 NAME */
13 #include <unistd.h>
15 uid_t geteuid(
17 /* SYNOPSIS */
18 void)
20 /* FUNCTION
22 INPUTS
24 RESULT
26 NOTES
28 EXAMPLE
30 BUGS
32 SEE ALSO
33 getuid()
35 INTERNALS
37 ******************************************************************************/
39 return 0;
40 } /* geteuid() */