1
0
Files
irix-657m-src/eoe/cmd/sccs/lib/comobj/eqsid.c
2022-09-29 17:59:04 +03:00

26 lines
659 B
C

/* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
/* UNIX System Laboratories, Inc. */
/* The copyright notice above does not evidence any */
/* actual or intended publication of such source code. */
/* #ident "@(#)sccs:lib/comobj/eqsid.c 6.3" */
#ident "$Revision: 1.5 $"
# include "../../hdr/defines.h"
int
eqsid(s1, s2)
register struct sid *s1, *s2;
{
if (s1->s_rel == s2->s_rel &&
s1->s_lev == s2->s_lev &&
s1->s_br == s2->s_br &&
s1->s_seq == s2->s_seq)
return(1);
else
return(0);
}