/* 
 * ocsum.h
 *
 * x-kernel v3.3
 *
 * Copyright (c) 1993,1991,1990,1996  Arizona Board of Regents
 */

#ifndef ocsum_h
#define ocsum_h

#ifndef xtype_h
#include "xtype.h"
#endif

#ifndef intelx86

#ifdef __STDC__
extern u_short ocsum(u_short *, int);
#else
extern u_short ocsum();
#endif

#else	/* intelx86 */

#ifdef __STDC__
extern u_short ocsum(u_short *, register int);
#else
extern u_short ocsum();
#endif

#endif	/* intelx86 */

#ifdef __STDC__
extern u_short inCkSum(Msg *, u_short *, int);
#else
extern u_short inCkSum();
#endif

#endif	/* ocsum_h */
