blob: bcf0945497deb5eec555b05767816baf23f419da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* 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;
}
|