Commit b8f46564 authored by Alex Brainman's avatar Alex Brainman

runtime: silence warnings

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5656084
parent 1e0f97ac
......@@ -13,6 +13,7 @@ runtime·signame(int32)
void
runtime·sigenable(uint32 sig)
{
USED(sig);
}
void
......
......@@ -83,6 +83,7 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp)
void
runtime·sigenable(uint32 sig)
{
USED(sig);
}
void
......
......@@ -90,6 +90,7 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp)
void
runtime·sigenable(uint32 sig)
{
USED(sig);
}
void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment