llvm-for-llvmta/examples/OCaml-Kaleidoscope/Chapter5/bindings.c

8 lines
149 B
C
Raw Normal View History

2022-04-25 10:02:23 +02:00
#include <stdio.h>
/* putchard - putchar that takes a double and returns 0. */
extern double putchard(double X) {
putchar((char)X);
return 0;
}