1 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
||||
|
||||
#include "GPS.h" |
||||
#include <stdio.h> |
||||
|
||||
void |
||||
GPS::_error(const char *fmt, ...) |
||||
{ |
||||
va_list ap; |
||||
|
||||
if (print_errors && stderr) { |
||||
va_start(ap, fmt); |
||||
vfprintf(stderr, fmt, ap); |
||||
va_end(ap); |
||||
} |
||||
} |
Loading…
Reference in new issue