Sign in
swiftshader
/
SwiftShader
/
cbefe532838ce36e00dbd8c269882104f9ff02e1
/
.
/
src
/
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
;
}