Added setting position while duplicating file handles with FMF_WRITE mode. It's neede...
[cake.git] / compiler / clib / getuid.c
blob3c85e74ca9cc032484859ea01a06d36bf60a1539
1 /*
2 Copyright © 2003, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function getuid().
6 */
8 #include <sys/types.h>
10 /*****************************************************************************
12 NAME */
13 #include <unistd.h>
15 uid_t getuid(
17 /* SYNOPSIS */
18 void)
20 /* FUNCTION
22 INPUTS
24 RESULT
26 NOTES
28 EXAMPLE
30 BUGS
32 SEE ALSO
33 geteuid()
35 INTERNALS
37 ******************************************************************************/
39 return 0;
40 } /* getuid() */