mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-25 05:46:35 +00:00
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)
|
|
}
|