blob: 9518af34d2e8968c214d59044dc2859047f7d878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $Id$ */
#include <stdio.h>
#include <stdarg.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);
}
|