math: fix two fma issues (only affects non-nearest rounding mode, x86)
[musl] / src / prng / lcong48.c
1 #include <stdlib.h>
2 #include <string.h>
3
4 extern unsigned short __seed48[7];
5
6 void lcong48(unsigned short p[7])
7 {
8         memcpy(__seed48, p, sizeof __seed48);
9 }