2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 ANSI C function putc().
10 #include <dos/dosextens.h>
11 #include <proto/exec.h>
12 #include <proto/dos.h>
19 /*****************************************************************************
31 Write one character to the specified stream.
34 c - The character to output
35 stream - The character is written to this stream
38 The character written or EOF on error.
50 ******************************************************************************/
52 return fputc(c
, stream
);