mirror of https://github.com/ArduPilot/ardupilot
Duplicate include protection for BetterStream.h
git-svn-id: https://arducopter.googlecode.com/svn/trunk@761 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
parent
c39639045c
commit
c833182dbe
|
@ -8,6 +8,9 @@
|
|||
// your option) any later version.
|
||||
//
|
||||
|
||||
#ifndef __BETTERSTREAM_H
|
||||
#define __BETTERSTREAM_H
|
||||
|
||||
#include <Stream.h>
|
||||
#include <avr/pgmspace.h>
|
||||
|
||||
|
@ -36,3 +39,6 @@ private:
|
|||
static int _putchar(char c, FILE *stream);
|
||||
static int _getchar(FILE *stream);
|
||||
};
|
||||
|
||||
#endif // __BETTERSTREAM_H
|
||||
|
||||
|
|
Loading…
Reference in New Issue