Sign in
swiftshader
/
SwiftShader.git
/
f2cb9dff9c71cff304d98f0df7ffe6bebd6bc2bb
/
.
/
third_party
/
LLVM
/
examples
/
OCaml-Kaleidoscope
/
Chapter5
/
bindings.c
blob: 053513bf0c0cd09c7a66768bad0cb4e11f254bc2 [
file
]
#include
<stdio.h>
/* putchard - putchar that takes a double and returns 0. */
extern
double
putchard
(
double
X
)
{
putchar
((
char
)
X
);
return
0
;
}