Source file src/crypto/internal/fips140/check/checktest/asm_none.go
1 // Copyright 2024 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 5 //go:build (!386 && !amd64 && !arm && !arm64) || purego 6 7 package checktest 8 9 import "unsafe" 10 11 func PtrStaticData() *uint32 { return nil } 12 func PtrStaticText() unsafe.Pointer { return nil } 13