Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git] / com32 / lib / seed48.c
blobc5b28aabdee0ead8e14dc376989950026c8e2765
1 /*
2 * seed48.c
3 */
5 #include <stdlib.h>
6 #include <stdint.h>
7 #include <string.h>
9 extern unsigned short __rand48_seed[3];
11 unsigned short *seed48(const unsigned short xsubi[3])
13 static unsigned short oldseed[3];
14 memcpy(oldseed, __rand48_seed, sizeof __rand48_seed);
15 memcpy(__rand48_seed, xsubi, sizeof __rand48_seed);
17 return oldseed;