start service tasks separately in-case platforms need to perform additional set-up...
[AROS.git] / compiler / posixc / getuid.c
blob79a56e0096dd6116d0450a6d5d9b5864dc0f61ff
1 /*
2 Copyright © 2003-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function getuid().
6 */
8 /*****************************************************************************
10 NAME */
11 #include <unistd.h>
13 uid_t getuid(
15 /* SYNOPSIS */
16 void)
18 /* FUNCTION
20 INPUTS
22 RESULT
24 NOTES
25 Always 0 is returned for the moment.
27 EXAMPLE
29 BUGS
31 SEE ALSO
32 geteuid()
34 INTERNALS
36 ******************************************************************************/
38 return 0;
39 } /* getuid() */