compiler/clib: Rename IoErr2errno() to __arosc_ioerr2errno(); function is now defined...
[AROS.git] / compiler / clib / getuid.c
blobe5047d5bf173fd3416fbaaecde4f725cc731d2ca
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() */