]> pd.if.org Git - pdclib/blobdiff - functions/stdio/putchar.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / stdio / putchar.c
index fab2213efcdb1aa105a525e320077bdf8196a611..7025698172c9d1a12b9545ae79d2832e61657a56 100644 (file)
@@ -6,3 +6,9 @@
 // ----------------------------------------------------------------------------
 
 int putchar( int c ) { /* TODO */ };
+
+/* PDPC code - unreviewed
+{
+    return (putc(c, stdout));
+}
+*/