| 728 | static int random_fd = -1, urandom_fd = -1; |
| 729 | |
| 730 | void |
| 731 | random_init(void) |
| 732 | { |
| 733 | VERIFY((random_fd = open(random_path, O_RDONLY)) != -1); |
| 734 | VERIFY((urandom_fd = open(urandom_path, O_RDONLY)) != -1); |
| 735 | } |
| 736 | |
| 737 | void |
| 738 | random_fini(void) |