blob: 053513bf0c0cd09c7a66768bad0cb4e11f254bc2 [file] [log] [blame]
#include <stdio.h>
/* putchard - putchar that takes a double and returns 0. */
extern double putchard(double X) {
putchar((char)X);
return 0;
}