[embedded] Drop 'public' from forward declaration of arc4random_buf

This commit is contained in:
Kuba Mracek
2023-12-20 14:04:35 +01:00
parent bbbff9e605
commit 943c7c2ee5

View File

@@ -276,7 +276,7 @@ public func swift_willThrow() throws {
}
@_extern(c, "arc4random_buf")
public func arc4random_buf(buf: UnsafeMutableRawPointer, nbytes: Int)
func arc4random_buf(buf: UnsafeMutableRawPointer, nbytes: Int)
public func swift_stdlib_random(_ buf: UnsafeMutableRawPointer, _ nbytes: Int) {
arc4random_buf(buf: buf, nbytes: nbytes)