Cross Reference: getsumd.c
xref
: /
illumos-gate
/
usr
/
src
/
cmd
/
ipf
/
lib
/
common
/
getsumd.c
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
/*
* 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
;
}