start service tasks separately in-case platforms need to perform additional set-up...
[AROS.git] / compiler / posixc / ttyname.c
blobc241d7fb73faf8a4bc336c512c288d375afae503
1 /*
2 Copyright © 2008-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function ttyname().
6 */
8 #include <aros/debug.h>
10 #include <errno.h>
12 /*****************************************************************************
14 NAME */
15 #include <unistd.h>
17 char * ttyname(
19 /* SYNOPSIS */
20 int fd)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
29 Not implemented.
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 ******************************************************************************/
41 /* TODO: Implement ttyname() */
42 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
44 errno = ENOSYS;
45 return NULL;