compiler/clib: Rename IoErr2errno() to __arosc_ioerr2errno(); function is now defined...
[AROS.git] / compiler / clib / ttyname.c
blobf1ad59e944f020df4a1a7ab4d803568b8ac3c0fa
1 /*
2 Copyright © 2008, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include <errno.h>
10 /*****************************************************************************
12 NAME */
13 #include <unistd.h>
15 char * ttyname(
17 /* SYNOPSIS */
18 int fd)
20 /* FUNCTION
22 INPUTS
24 RESULT
26 NOTES
28 EXAMPLE
30 BUGS
32 SEE ALSO
34 INTERNALS
36 ******************************************************************************/
38 /* FIXME: Implement ttyname() */
39 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
41 errno = ENOSYS;
42 return NULL;