2 * See the file LICENSE for redistribution information.
4 * Copyright (c) 1996, 1997
5 * Sleepycat Software. All rights reserved.
8 * Copyright (c) 1998 by Sun Microsystems, Inc.
14 #pragma ident "%Z%%M% %I% %E% SMI"
17 static const char sccsid
[] = "@(#)log_compare.c 10.2 (Sleepycat) 6/21/97";
18 static const char sccsi2
[] = "%W% (Sun) %G%";
21 #ifndef NO_SYSTEM_INCLUDES
22 #include <sys/types.h>
32 log_compare(lsn0
, lsn1
)
33 const DB_LSN
*lsn0
, *lsn1
;
35 if (lsn0
->file
!= lsn1
->file
)
36 return (lsn0
->file
< lsn1
->file
? -1 : 1);
38 if (lsn0
->offset
!= lsn1
->offset
)
39 return (lsn0
->offset
< lsn1
->offset
? -1 : 1);