OpenSolaris_b135/cmd/ipf/lib/common/getsumd.c

Compare this file to the similar file:
Show the results in this format:

/*
 * Copyright (C) 1993-2001 by Darren Reed.
 *
 * See the IPFILTER.LICENCE file for details on licencing.
 */
/*
 * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

#pragma ident	"%Z%%M%	%I%	%E% SMI"

#include "ipf.h"

char *getsumd(sum)
u_32_t sum;
{
	static char sumdbuf[17];

	sprintf(sumdbuf, "%#0x", sum);
	return sumdbuf;
}