summaryrefslogtreecommitdiff
path: root/report.c
blob: 10effec569dec204e90c2f475c2a690bd8e64e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Stub function, only here becauuse the linker wants to see it even if
 * a client does not actually require it.
 */
#include "config.h"
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <stdarg.h>

void gpsd_report(int errlevel, const char *fmt, ... )
/* assemble report in printf(3) style, use stderr or syslog */
{
    va_list ap;

    va_start(ap, fmt) ;
    vfprintf(stderr, fmt, ap);
    va_end(ap);
}