repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] MVE sext and widen/narrow tests from larger types. NFC
[llvm-core.git]
/
examples
/
OCaml-Kaleidoscope
/
Chapter4
/
bindings.c
blob
053513bf0c0cd09c7a66768bad0cb4e11f254bc2
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
}