io_go1.6.go 253 B

1234567891011
  1. // +build !go1.7
  2. package sdkio
  3. // Copy of Go 1.7 io package's Seeker constants.
  4. const (
  5. SeekStart = 0 // seek relative to the origin of the file
  6. SeekCurrent = 1 // seek relative to the current offset
  7. SeekEnd = 2 // seek relative to the end
  8. )