Browse Source

Set native line endings on checkout to help avoid confusion.


			
			
				master
			
			
		
DrZiplok@gmail.com 15 years ago
parent
commit
3e1cd1ea2e
  1. 16
      libraries/AP_GPS/GPS.cpp

16
libraries/AP_GPS/GPS.cpp

@ -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…
Cancel
Save