diff --git a/Stopwatch.h b/Stopwatch.h index dbe0429..6aa341a 100644 --- a/Stopwatch.h +++ b/Stopwatch.h @@ -5,6 +5,10 @@ //This struct helps by using a struct to simplify timing a program in C +#ifndef STOPWATCH_H +#define STOPWATCH_H + + #include #include #include @@ -134,4 +138,7 @@ char* getStr(struct Stopwatch* timer){ } return num; -} \ No newline at end of file +} + + +#endif //STOPWATCH_H