switch to packaged lzma package

This commit is contained in:
aviau
2018-06-22 11:58:10 -04:00
parent 9000446663
commit 7dfc12d138
19 changed files with 4 additions and 4 deletions
+33
View File
@@ -0,0 +1,33 @@
// Copyright (c) 2010, Andrei Vieru. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package lzma
func minInt32(left int32, right int32) int32 {
if left < right {
return left
}
return right
}
func minUInt32(left uint32, right uint32) uint32 {
if left < right {
return left
}
return right
}
func maxInt32(left int32, right int32) int32 {
if left > right {
return left
}
return right
}
func maxUInt32(left uint32, right uint32) uint32 {
if left > right {
return left
}
return right
}