Joel Galenson | 4be0c6d | 2020-07-07 13:20:14 -0700 | [diff] [blame] | 1 | // Copyright 2018 Developers of the Rand project. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 4 | // https://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 5 | // <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your |
| 6 | // option. This file may not be copied, modified, or distributed |
| 7 | // except according to those terms. |
| 8 | |
| 9 | //! A dummy implementation for unsupported targets which always fails |
| 10 | use crate::{error::UNSUPPORTED, Error}; |
| 11 | |
| 12 | pub fn getrandom_inner(_: &mut [u8]) -> Result<(), Error> { |
| 13 | Err(UNSUPPORTED) |
| 14 | } |