12 lines
109 B
Go
12 lines
109 B
Go
|
// +build go1.5
|
||
|
|
||
|
package packed
|
||
|
|
||
|
import (
|
||
|
"bufio"
|
||
|
)
|
||
|
|
||
|
func discard(r *bufio.Reader, n int) {
|
||
|
r.Discard(n)
|
||
|
}
|