Expose random as urandom as well

This commit is contained in:
Kevin Lange 2015-08-24 21:34:24 -07:00
parent 92fa5e928d
commit 6cd1a40dbc

View File

@ -61,6 +61,7 @@ static fs_node_t * random_device_create(void) {
static int random_initialize(void) {
vfs_mount("/dev/random", random_device_create());
vfs_mount("/dev/urandom", random_device_create());
return 0;
}