Move /var/svc/log to /var/log/svc
[unleashed/lotheac.git] / usr / src / cmd / ipf / lib / common / getsumd.c
blobbcf0945497deb5eec555b05767816baf23f419da
1 /*
2 * Copyright (C) 1993-2001 by Darren Reed.
4 * See the IPFILTER.LICENCE file for details on licencing.
5 */
6 /*
7 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
8 * Use is subject to license terms.
9 */
11 #pragma ident "%Z%%M% %I% %E% SMI"
13 #include "ipf.h"
15 char *getsumd(sum)
16 u_32_t sum;
18 static char sumdbuf[17];
20 sprintf(sumdbuf, "%#0x", sum);
21 return sumdbuf;