projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[Orc][Kaleidoscope] Make the Orc/Kaleidoscope tutorials easier to build on
[oota-llvm.git]
/
examples
/
OCaml-Kaleidoscope
/
Chapter4
/
bindings.c
1
#include <stdio.h>
2
3
/* putchard - putchar that takes a double and returns 0. */
4
extern double putchard(double X) {
5
putchar((char)X);
6
return 0;
7
}