2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 ANSI C function putc().
9 #include <dos/dosextens.h>
10 #include <proto/exec.h>
11 #include <proto/dos.h>
14 #define _STDIO_H_NOMACRO
17 /*****************************************************************************
29 Write one character to the specified stream.
32 c - The character to output
33 stream - The character is written to this stream
36 The character written or EOF on error.
48 ******************************************************************************/
50 return fputc(c
, stream
);