/*									*/
/*	Dummy function for comparing two records 			*/
/*	========================================			*/
/*									*/
/*	Copyright (C) DIAB T{by 1983					*/
/*	Written by: Per-Arne Svensson 					*/
/*
 *	This function is used by the function instree() in the library, 
 *	which inserts records into a binary tree after comparing them.
 */

#include "../cmd.h"

long
compare(ptr1, ptr2)
register struct entry *ptr1, *ptr2;
{
long	result = 0L;
	return(result);
}
