rt: Rename rand() to isaac_rand() since the former prevents lots of standard headers from being included

This commit is contained in:
Patrick Walton
2011-09-20 15:34:47 -07:00
parent 307957710c
commit 5209b19255
4 changed files with 5 additions and 5 deletions

View File

@@ -151,7 +151,7 @@ rand_new(rust_task *task)
extern "C" CDECL size_t
rand_next(rust_task *task, randctx *rctx)
{
return rand(rctx);
return isaac_rand(rctx);
}
extern "C" CDECL void