USB device can now be unbind
[AROS.git] / compiler / stdc / putchar.c
blob4c8fe5103d76576fee8bc12b32e268e7824f3101
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 C99 function putchar()
6 */
7 #include <libraries/stdcio.h>
9 /*****************************************************************************
11 NAME */
13 #include <stdio.h>
15 int putchar(
17 /* SYNOPSIS */
18 int c)
20 /* FUNCTION
21 Equivalent to fputc(stdout)
23 INPUTS
25 RESULT
27 NOTES
29 EXAMPLE
31 BUGS
33 SEE ALSO
34 fputc(), putc()
36 INTERNALS
38 ******************************************************************************/
40 struct StdCIOBase *StdCIOBase = __aros_getbase_StdCIOBase();
42 return fputc(c, StdCIOBase->_stdout);