1
0
mirror of https://github.com/golang/go synced 2024-11-21 18:34:44 -07:00

ld: fix build (uvlong vs uint64 conflict on freebsd)

R=rsc
CC=golang-dev
https://golang.org/cl/4023071
This commit is contained in:
Rob Pike 2011-02-07 14:40:36 -08:00
parent fb55941539
commit 0ae041735a
2 changed files with 2 additions and 2 deletions

View File

@ -365,7 +365,7 @@ void listinit(void);
Sym* lookup(char*, int);
void lputb(int32);
void lputl(int32);
void vputl(uvlong);
void vputl(uint64);
void strnput(char*, int);
void main(int, char*[]);
void* mal(uint32);

View File

@ -260,7 +260,7 @@ vputb(uint64 v)
}
void
vputl(uvlong v)
vputl(uint64 v)
{
lputl(v);
lputl(v >> 32);