llvm-project/llvm/examples/OCaml-Kaleidoscope/Chapter5/bindings.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
149 B
C
Raw Normal View History

#include <stdio.h>
/* putchard - putchar that takes a double and returns 0. */
extern double putchard(double X) {
putchar((char)X);
return 0;
}