hardlink works now

This commit is contained in:
Chris Lu
2020-09-24 03:06:44 -07:00
parent c7d7b1a0f6
commit 5e239afdfc
16 changed files with 882 additions and 461 deletions

View File

@@ -142,3 +142,9 @@ func RandomInt32() int32 {
rand.Read(buf)
return int32(BytesToUint32(buf))
}
func RandomInt64() int64 {
buf := make([]byte, 8)
rand.Read(buf)
return int64(BytesToUint64(buf))
}