X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=isam%2Fisutil.c;h=4713a23a5b50bc7f2b52399c8d400a3a77455766;hb=49f1c8c877affdeb9e9221047c48beed3f475afb;hp=aae8c3e80a65f8fac48963f64d37a959544a86cc;hpb=2fdd6275d8becc9c2317bd2b23daa3c569926392;p=idzebra-moved-to-github.git diff --git a/isam/isutil.c b/isam/isutil.c index aae8c3e..4713a23 100644 --- a/isam/isutil.c +++ b/isam/isutil.c @@ -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 #include #include @@ -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));