std: remove broken windows random implementation

This commit is contained in:
Andrew Kelley 2016-04-19 17:15:23 -07:00
parent ff1ab3fe9c
commit 9658c05fd4

View File

@ -17,12 +17,6 @@ pub fn get_random_bytes(buf: []u8) -> %void {
} }
} }
}, },
windows => {
// TODO
for (buf) |_, i| {
buf[i] = 4;
}
},
else => unreachable{}, else => unreachable{},
} }
} }