00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #include "db_config.h"
00011
00012 #ifndef NO_SYSTEM_INCLUDES
00013 #include <sys/types.h>
00014 #endif
00015
00016 #include "db_int.h"
00017
00018
00019
00020
00021
00022
00023
00024 int
00025 log_compare(lsn0, lsn1)
00026 const DB_LSN *lsn0, *lsn1;
00027 {
00028 if (lsn0->file != lsn1->file)
00029 return (lsn0->file < lsn1->file ? -1 : 1);
00030
00031 if (lsn0->offset != lsn1->offset)
00032 return (lsn0->offset < lsn1->offset ? -1 : 1);
00033
00034 return (0);
00035 }