remove __SYSCALL_SSLEN arch macro in favor of using public _NSIG
[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 }