File: report.h

package info (click to toggle)
sendpage 0.8.6.1-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 632 kB
  • ctags: 349
  • sloc: ansic: 5,238; sh: 241; makefile: 110; awk: 2
file content (16 lines) | stat: -rw-r--r-- 233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _SP_REPORT_H_
#define _SP_REPORT_H_

#ifdef	STDC_HEADERS
#define P(args) args
#else
#define P(args) ()
#endif

void report_init P((int nolog));
void report P((int, char *, ...));
char *get_errmsg P((void));

#undef P

#endif