comparison usr/src/cmd/ipf/lib/common/verbose.c @ 0:c9caec207d52 b86

Initial porting based on b86
author Koji Uno <koji.uno@sun.com>
date Tue, 02 Jun 2009 18:56:50 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c9caec207d52
1 /*
2 * Copyright (C) 1993-2001 by Darren Reed.
3 *
4 * See the IPFILTER.LICENCE file for details on licencing.
5 *
6 * $Id: verbose.c,v 1.6 2001/06/09 17:09:25 darrenr Exp $
7 */
8
9 #if defined(__STDC__)
10 # include <stdarg.h>
11 #else
12 # include <varargs.h>
13 #endif
14 #include <stdio.h>
15
16 #include "ipt.h"
17 #include "opts.h"
18
19
20 #if defined(__STDC__)
21 void verbose(char *fmt, ...)
22 #else
23 void verbose(fmt, va_alist)
24 char *fmt;
25 va_dcl
26 #endif
27 {
28 va_list pvar;
29
30 va_start(pvar, fmt);
31
32 if (opts & OPT_VERBOSE)
33 vprintf(fmt, pvar);
34 va_end(pvar);
35 }