Drop syslinux, require distro's version instead.
[bootcd.git] / syslinux / com32 / lib / seed48.c
diff --git a/syslinux/com32/lib/seed48.c b/syslinux/com32/lib/seed48.c
deleted file mode 100644 (file)
index f8353c8..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * seed48.c
- */
-
-#include <stdlib.h>
-#include <stdint.h>
-#include <string.h>
-
-extern unsigned short __rand48_seed[3];
-
-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;
-}
-