compiler/clib: #error if not cpu specific implementation of setjmp(), longjmp(),...
[AROS.git] / compiler / clib / ttyname.c
blob149121f8706d2ef167e19871bcf60265036ed42a
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
27 Not implemented.
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/
39 /* TODO: Implement ttyname() */
40 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
42 errno = ENOSYS;
43 return NULL;