readonly_strict.go 127 B

123456789
  1. //go:build s390x || ppc64 || ppc64le
  2. package fiber
  3. import "unsafe"
  4. func isReadOnly(_ unsafe.Pointer) bool {
  5. return false
  6. }