Small cleanup of extensions code
[AROS.git] / compiler / clib / ttyname.c
bloba61fb9f5111732b1643840ccebdf93ad6110b4b0
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 # warning Implement ttyname()
39 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
41 errno = ENOSYS;
42 return NULL;