Commit 9b07d50d authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

counter: add include guards

parent c4e9b301
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
#ifndef COUNTER_H
#define COUNTER_H

#include <avr/io.h>
#include <avr/interrupt.h>

@@ -29,3 +32,5 @@ class Counter {
};

extern Counter counter;

#endif
+5 −0
Original line number Diff line number Diff line
#ifndef COUNTER_H
#define COUNTER_H

#include <msp430.h>
#include <stdint.h>

@@ -28,3 +31,5 @@ class Counter {
};

extern Counter counter;

#endif
+5 −0
Original line number Diff line number Diff line
#ifndef COUNTER_H
#define COUNTER_H

#include <stdint.h>
#include <time.h>

@@ -32,3 +35,5 @@ class Counter {
};

extern Counter counter;

#endif