From ff2ef8b1acc2b7bfec93d3049f71db91af90dfae Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 10 Mar 2016 12:17:54 -0500 Subject: [PATCH] Once guard around Console.hh --- src/Console.hh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Console.hh b/src/Console.hh index c0ce364..4b63ba5 100644 --- a/src/Console.hh +++ b/src/Console.hh @@ -6,7 +6,9 @@ * Declaration of the Console class. Presents an API for a VGA console. */ -//#include +#ifndef __CONSOLE_HH__ +#define __CONSOLE_HH__ + #include #include @@ -67,3 +69,5 @@ private: }; } /* namespace kernel */ + +#endif /* __CONSOLE_HH__ */