Add USED declarations for SysUnused parameters.

R=rsc
DELTA=2  (2 added, 0 deleted, 0 changed)
OCL=22640
CL=22642
This commit is contained in:
Ian Lance Taylor 2009-01-13 10:24:06 -08:00
parent 9b8da82d72
commit 1a0bde24ae

View file

@ -170,6 +170,8 @@ SysAlloc(uintptr n)
void
SysUnused(void *v, uintptr n)
{
USED(v);
USED(n);
// TODO(rsc): call madvise MADV_DONTNEED
}