X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/a39ff7e25e19b3a8c3020042a3872ca9ec9659f1..c6bf4f310a33a9262d455ea4d3f0630b1255e3fe:/libkern/crypto/corecrypto_rand.c?ds=sidebyside diff --git a/libkern/crypto/corecrypto_rand.c b/libkern/crypto/corecrypto_rand.c index 115f2d082..4a0bb2496 100644 --- a/libkern/crypto/corecrypto_rand.c +++ b/libkern/crypto/corecrypto_rand.c @@ -46,7 +46,8 @@ cc_rand_generate(void *out, size_t outlen) return error; } -int random_buf(void *buf, size_t buflen) +int +random_buf(void *buf, size_t buflen) { return cc_rand_generate(buf, buflen); }