Added include guards

This commit is contained in:
2019-03-08 22:36:01 -05:00
parent 64657f82ec
commit 7eac467303

View File

@@ -5,6 +5,10 @@
//This struct helps by using a struct to simplify timing a program in C //This struct helps by using a struct to simplify timing a program in C
#ifndef STOPWATCH_H
#define STOPWATCH_H
#include <time.h> #include <time.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdio.h> #include <stdio.h>
@@ -135,3 +139,6 @@ char* getStr(struct Stopwatch* timer){
return num; return num;
} }
#endif //STOPWATCH_H