time_nofake.go 351 B

1234567891011121314
  1. // Copyright 2019 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build !faketime
  5. package syscall
  6. const faketime = false
  7. func faketimeWrite(fd int, p []byte) int {
  8. // This should never be called since faketime is false.
  9. panic("not implemented")
  10. }