Stub out most of stdio on AltOS
[fw/pdclib] / platform / altos / functions / stdio / fputc.c
diff --git a/platform/altos/functions/stdio/fputc.c b/platform/altos/functions/stdio/fputc.c
new file mode 100644 (file)
index 0000000..059c86f
--- /dev/null
@@ -0,0 +1,36 @@
+/* $Id$ */
+
+/* fputc( int, FILE * )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <stdio.h>
+
+#ifndef REGTEST
+
+extern void ao_putchar(char c);
+
+/* Write the value c (cast to unsigned char) to the given stream.
+   Returns c if successful, EOF otherwise.
+   If a write error occurs, the error indicator of the stream is set.
+*/
+int fputc( int c, struct _PDCLIB_file_t * stream )
+{
+       ao_putchar(c);
+       return c;
+}
+
+#endif
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main( void )
+{
+    /* Testing covered by ftell.c */
+    return TEST_RESULTS;
+}
+
+#endif