diff options
| author | Carl Shapiro <cshapiro@google.com> | 2013-02-19 18:05:44 -0800 |
|---|---|---|
| committer | Carl Shapiro <cshapiro@google.com> | 2013-02-19 18:05:44 -0800 |
| commit | 7f9c02a10d736d8d4c39717c82b69ec50e9677f1 (patch) | |
| tree | e183a0cfd71b9041f2a509ea68d5907b003904eb /src/pkg/runtime/runtime.h | |
| parent | 66b69a1719040e05f8ccef8110aaff192968c29a (diff) | |
| download | go-7f9c02a10d736d8d4c39717c82b69ec50e9677f1.tar.xz | |
runtime: add conversion specifier to printf for char values
R=r, golang-dev
CC=golang-dev
https://golang.org/cl/7327053
Diffstat (limited to 'src/pkg/runtime/runtime.h')
| -rw-r--r-- | src/pkg/runtime/runtime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index 77f60cb4b5..a787cad563 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h @@ -817,6 +817,7 @@ void* runtime·getcallerpc(void*); * runtime go-called */ void runtime·printbool(bool); +void runtime·printbyte(int8); void runtime·printfloat(float64); void runtime·printint(int64); void runtime·printiface(Iface); |
