Updated WIN32 code specific sections. Changed header.
[idzebra-moved-to-github.git] / isam / isutil.c
index aae8c3e..4713a23 100644 (file)
@@ -1,10 +1,19 @@
 /*
- * Copyright (C) 1994, Index Data I/S 
+ * Copyright (C) 1994-1999, Index Data
  * All rights reserved.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: isutil.c,v $
- * Revision 1.1  1994-09-12 08:02:13  quinn
+ * Revision 1.4  1999-02-02 14:51:17  adam
+ * Updated WIN32 code specific sections. Changed header.
+ *
+ * Revision 1.3  1996/10/29 13:56:55  adam
+ * Include of zebrautl.h instead of alexutil.h.
+ *
+ * Revision 1.2  1995/09/04 12:33:46  adam
+ * Various cleanup. YAZ util used instead.
+ *
+ * Revision 1.1  1994/09/12  08:02:13  quinn
  * Not functional yet
  *
  */
@@ -14,6 +23,7 @@
  * may move to util/ along the way.
  */
 
+#include <stdio.h>
 #include <string.h>
 #include <stdarg.h>
 
@@ -37,7 +47,7 @@ char *strconcat(const char *s1, ...)
 
 int is_default_cmp(const void *k1, const void *k2)
 {
-    SYSNO b1, b2;
+    int b1, b2;
 
     memcpy(&b1, k1, sizeof(b1));
     memcpy(&b2, k2, sizeof(b2));