diff options
Diffstat (limited to 'com32/lib/seed48.c')
-rw-r--r-- | com32/lib/seed48.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/com32/lib/seed48.c b/com32/lib/seed48.c index f8353c87..c1d17304 100644 --- a/com32/lib/seed48.c +++ b/com32/lib/seed48.c @@ -13,7 +13,6 @@ unsigned short *seed48(const unsigned short xsubi[3]) static unsigned short oldseed[3]; memcpy(oldseed, __rand48_seed, sizeof __rand48_seed); memcpy(__rand48_seed, xsubi, sizeof __rand48_seed); - + return oldseed; } - |