summaryrefslogtreecommitdiff
path: root/report.c
blob: 59b8c382f6b34b5005d970ce8df3876680f01c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* $Id$ */
#include <sys/types.h>
#include <stdio.h>
#include <stdarg.h>
#include "gpsd_config.h"
#include "gpsd.h"

void gpsd_report(int errlevel UNUSED, const char *fmt, ... )
/* stub logger for clients that don't supply one */
{
    va_list ap;

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