mirror of
https://github.com/golang/go
synced 2024-11-22 00:24:41 -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:
parent
fb55941539
commit
0ae041735a
@ -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);
|
||||
|
@ -260,7 +260,7 @@ vputb(uint64 v)
|
||||
}
|
||||
|
||||
void
|
||||
vputl(uvlong v)
|
||||
vputl(uint64 v)
|
||||
{
|
||||
lputl(v);
|
||||
lputl(v >> 32);
|
||||
|
Loading…
Reference in New Issue
Block a user