1
0
mirror of https://github.com/golang/go synced 2024-11-22 05:04:40 -07:00

runtime: silence warnings

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5656084
This commit is contained in:
Alex Brainman 2012-02-17 17:05:41 +11:00
parent 1e0f97ac65
commit b8f465644c
3 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,7 @@ runtime·signame(int32)
void
runtime·sigenable(uint32 sig)
{
USED(sig);
}
void

View File

@ -83,6 +83,7 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp)
void
runtime·sigenable(uint32 sig)
{
USED(sig);
}
void

View File

@ -90,6 +90,7 @@ runtime·sighandler(ExceptionRecord *info, Context *r, G *gp)
void
runtime·sigenable(uint32 sig)
{
USED(sig);
}
void