]> mj.ucw.cz Git - libucw.git/blobdiff - lib/bitsig.c
Implemented an asynchronous I/O library module.
[libucw.git] / lib / bitsig.c
index 304ee002f5cde0973eab00b47ca1a49492816d9d..9b072e1fc3dcc5c038bfd00645779b5cd4fd101e 100644 (file)
@@ -1,5 +1,5 @@
 /*
 /*
- *     Bit Array Signatures -- A Dubious Detector of Duplicates
+ *     UCW Library -- Bit Array Signatures -- A Dubious Detector of Duplicates
  *
  *     (c) 2002 Martin Mares <mj@ucw.cz>
  *
  *
  *     (c) 2002 Martin Mares <mj@ucw.cz>
  *
@@ -36,6 +36,9 @@
  *     We leave L and an upper bound for N as parameters set during
  *     creation of the structure. Currently, the structure is limited
  *     to 4 Gb = 512 MB.
  *     We leave L and an upper bound for N as parameters set during
  *     creation of the structure. Currently, the structure is limited
  *     to 4 Gb = 512 MB.
+ *
+ *     This software may be freely distributed and used according to the terms
+ *     of the GNU Lesser General Public License.
  */
 
 #include "lib/lib.h"
  */
 
 #include "lib/lib.h"
@@ -43,7 +46,6 @@
 #include "lib/md5.h"
 
 #include <string.h>
 #include "lib/md5.h"
 
 #include <string.h>
-#include <stdlib.h>
 
 struct bitsig {
   uns l, m, n, maxn, max_m_mult;
 
 struct bitsig {
   uns l, m, n, maxn, max_m_mult;