complex: make _Complex_I work with gcc -std=c99 -pedantic-errors
[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 }