YouCompleteMe/cpp/llvm/examples/OCaml-Kaleidoscope/Chapter5/bindings.c

8 lines
149 B
C
Raw Normal View History

2012-07-05 20:51:06 -04:00
#include <stdio.h>
/* putchard - putchar that takes a double and returns 0. */
extern double putchard(double X) {
putchar((char)X);
return 0;
}