log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
hg
>
Members
>
tobaru
>
cbc
>
CbC_llvm
comparison examples/OCaml-Kaleidoscope/Chapter4/bindings.c @ 0:
95c75e76d11b
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
LLVM 3.4
author
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date
Thu, 12 Dec 2013 13:56:28 +0900
parents
children
comparison
equal
deleted
inserted
replaced
-1:000000000000
0:95c75e76d11b
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
}